Skip to content

Commit

Permalink
Merge pull request #4 from PreciousNyasulu/documentation
Browse files Browse the repository at this point in the history
Documentation
  • Loading branch information
PreciousNyasulu authored Sep 6, 2023
2 parents ffea650 + d1704e6 commit f51210b
Show file tree
Hide file tree
Showing 22 changed files with 2,987 additions and 347 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ database/test.sql
*.exe
malawi-country-data
/dist/
/build/
/build/
fly.toml
605 changes: 605 additions & 0 deletions data/data.sql

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: '3'

services:
postgres:
image: postgres:latest
container_name: postgres-container
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: country_data
ports:
- "5432:5432"
volumes:
- ./data/data.sql:/docker-entrypoint-initdb.d/data.sql # Mount the SQL dump into the container's init directory
networks:
- postgres-network

networks:
postgres-network:
Loading

0 comments on commit f51210b

Please sign in to comment.