Working but untested captcha api

This commit is contained in:
Imbus 2023-10-21 05:11:42 +02:00
parent 4c398a40f6
commit fa9b2b6fc1
8 changed files with 107 additions and 12 deletions

View file

@ -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]