preapring for rls

This commit is contained in:
2026-05-04 16:58:44 +02:00
parent f387eb5c84
commit ecbf909801
11 changed files with 242 additions and 51 deletions

33
README.md Normal file
View File

@@ -0,0 +1,33 @@
first things
`cp .env.example .env`
fill with for example: f0ckm
`cp config_example.json config.json`
Edit to needs, for sql you can do this:
host can either be localhost or the docker containers hostname, when running via docker this must be the dockers hostname
```
"sql": {
"host": "f0ckm-db",
"port": 5432,
"user": "f0ckm",
"password": "f0ckm",
"database": "f0ckm",
"multipleStatements": true,
"max": 50
},
```
`docker compose up -d`
`docker exec -i f0ckm-db psql -U f0ckm -d f0ckm < migrations/f0ckm_schema.sql`
`docker exec -t f0ckm node scripts/seed.mjs`
`docker exec -t f0ckm node scripts/create-admin.mjs admin [PASSWORD]`
now vist http://localhost:1337 in your browser