Working but untested captcha api
This commit is contained in:
parent
4c398a40f6
commit
fa9b2b6fc1
8 changed files with 107 additions and 12 deletions
7
justfile
7
justfile
|
|
@ -4,14 +4,15 @@ runtime := "podman"
|
|||
dev: start-debug
|
||||
@echo "Cd into client and run 'npm run dev' to start the client in dev mode."
|
||||
|
||||
# Builds the client with npm (result in client/dist
|
||||
[private]
|
||||
npm-install directory:
|
||||
cd {{directory}} && npm install
|
||||
|
||||
# Builds the client with npm (result in client/dist)
|
||||
[private]
|
||||
npm-build: (npm-install "client-solid")
|
||||
cd client && npm run build
|
||||
npm-build directory: (npm-install directory)
|
||||
cd {{directory}} && npm run build
|
||||
@echo "Built client at {{directory}}/dist"
|
||||
|
||||
# Builds a debug container
|
||||
[private]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue