openssl genrsa -out private.pem 2048
openssl rsa -in private.pem -pubout > public.pem
mv *.pen supplements/
awk -v ORS='\\n' '1' public.pem
source env
docker-compose up --build
- PostGIS
- Hasura
- Auth
- Nextjs (or Caddy w/Nextjs export)
users table
id text unique primary
first_name text nullable
last_name text nullable
email text unique
password text
role text
created_at timestamp
last_login_at timestamp
curl -H "Content-Type: application/json" \
-d'{"username": "[email protected]", "password": "test1234"}' \
http://localhost:11776/signup
curl -H "Content-Type: application/json" \
-d'{"username": "[email protected]", "password": "test1234"}' \
http://localhost:11776/login
curl -H "Content-Type: application/json" \
-d'{"username": "[email protected]", "password": "test1234"}' \
http://localhost:11776/login