Implement basic city portal logic (and severely deabstract)
- Create a podman compose for Postgres - Implement types and tables for urban data - No longer use a Cargo workspace as there's no point currently - Create query functionality (not mutation yet)
This commit is contained in:
parent
61dd9698bf
commit
c6dd6abaf1
14 changed files with 1704 additions and 150 deletions
16
podman-compose.yml
Normal file
16
podman-compose.yml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
services:
|
||||
postgres:
|
||||
image: docker.io/library/postgres:alpine
|
||||
container_name: postgres
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- ./db/init.sql:/docker-entrypoint-initdb.d/init.sql:Z
|
||||
- postgres_data:/var/lib/postgresql/data:Z
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue