-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lua CLI #83
Milestone
Comments
Closed
Some of the points above are also referencing #21 |
@thefosk I believe this can be in the next release by tonight ^ |
gszr
pushed a commit
that referenced
this issue
Oct 26, 2021
gszr
pushed a commit
that referenced
this issue
Oct 27, 2021
bungle
added a commit
that referenced
this issue
Nov 3, 2022
### Summary #### [0.8.15] - 2022-10-27 ##### bug fixes - **pkey:** check private key existence before doing sign ([#83](fffonion/lua-resty-openssl#83)) [eefcd2a](fffonion/lua-resty-openssl@eefcd2a)
bungle
added a commit
that referenced
this issue
Nov 3, 2022
### Summary #### [0.8.15] - 2022-10-27 ##### bug fixes - **pkey:** check private key existence before doing sign ([#83](fffonion/lua-resty-openssl#83)) [eefcd2a](fffonion/lua-resty-openssl@eefcd2a)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Let's switch our current CLI from a bash script to a Lua script. Here are reasons why and features we can accomplish:
migrations.lua
, dao factories...)luarocks install kong
would install Kong with our.rockspec
, copying the bin into the user's$PATH
. This solves our Try to distribute a binary #51 issue by having this desired "simple way" to install Kong.kong install <plugin>
command that leverages luarocks. It could download the plugin, verify the signature, prompt questions to the terminal for configuration of the installed plugin (ex:Do you want to enable this freshly installed plugin on your machine? [y/n]:
, etc...kong start/stop
scripts with nicerstdout
/stderr
outputs.TODO list:
kong
bin with sub-binaries for each command/etc/kong/kong.yml
or{rocks_path}/kong/conf/kong.yml
)tools.utils
andcmd.utils
now that we have a CLI utils file.kong.lua
to be bundled in thestart
command.The text was updated successfully, but these errors were encountered: