refactoring
This commit is contained in:
parent
db3d2d8680
commit
9cdc73d5ba
|
@ -1,3 +1,3 @@
|
|||
# ngrok-to-dotenv
|
||||
|
||||
This is a ngrok start-up wrapper that uses a dotenv file to get the authtoken and save the https address; it's a node cli tool that you can use with projects that need ngrok. You clone it into your project's folder, and add to the project's package.json a run script to call "cd ngrok-to-dotenv && node ngrok". Be sure to add the folder to your .gitignore and install the one package which is ngrok, using 'npm i' or 'yarn'.
|
||||
This is a ngrok start-up wrapper that uses a dotenv file (at '../.env' relative to this project's folder) to get the authtoken and save the https address; it's a node cli tool that you can use with projects that need ngrok. You clone it into your project's folder, and add to the project's package.json a run script to call "cd ngrok-to-dotenv && node ngrok". Be sure to add the folder to your .gitignore and install the one package which is ngrok and command-line-args, using 'npm i' or 'yarn'.
|
||||
|
|
4
ngrok.js
4
ngrok.js
|
@ -5,8 +5,8 @@ const { exec } = require("child_process");
|
|||
const dotenvFile = "../.env";
|
||||
|
||||
const optionDefinitions = [
|
||||
{ name: "proto", type: String },
|
||||
{ name: "addr", type: Number },
|
||||
{ name: "proto", alias: 'p', type: String },
|
||||
{ name: "addr", alias: 'a', type: Number },
|
||||
];
|
||||
|
||||
const commandLineArgs = require("command-line-args");
|
||||
|
|
Loading…
Reference in New Issue