Skip to content

Commit 6fc751c

Browse files
committed
Add Update Script
1 parent 0e083fd commit 6fc751c

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -333,3 +333,5 @@ exports/
333333
*prototype*
334334

335335
*credentials*
336+
337+
snapshots/

local.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ services:
3030
image: open_production_postgres
3131
volumes:
3232
- local_postgres_data:/var/lib/postgresql/data
33+
- .:/app
3334
env_file:
3435
- ./.envs/.local/.django
3536
ports:

scripts/restore_db_from_snapshot.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
3+
dropdb -U $POSTGRES_USER $POSTGRES_DB
4+
createdb -U $POSTGRES_USER $POSTGRES_DB
5+
psql -U $POSTGRES_USER $POSTGRES_DB < /app/snapshots/db_snapshot.sql

0 commit comments

Comments
 (0)