An open API service indexing awesome lists of open source software.

https://github.com/nelsontky/project-hawker


https://github.com/nelsontky/project-hawker

Last synced: 4 months ago
JSON representation

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_
```