https://github.com/nelsontky/project-hawker
https://github.com/nelsontky/project-hawker
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nelsontky/project-hawker
- Owner: nelsontky
- Created: 2021-05-23T14:32:56.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-13T11:46:10.000Z (about 4 years ago)
- Last Synced: 2024-12-30T16:33:24.534Z (6 months ago)
- Language: TypeScript
- Homepage: https://projecthawker.com
- Size: 109 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes
## Postgres backup (INSERTS only)
```
docker exec project-hawker_postgres_1 pg_dump --inserts postgresql://project-hawker:password@localhost:5432/project-hawker > postgres-backups/backup_$(date +"%d_%b_%y_%H%M")
```## Postgres restore
```
docker exec -i project-hawker_postgres_1 psql --dbname=postgresql://project-hawker:password@localhost:5432/project-hawker < postgres-backups/backup_
```