add vitally-reset-database helper

This commit is contained in:
sloane 2024-04-02 08:36:48 -04:00
parent ace616632b
commit eb0f89f4e9
No known key found for this signature in database

View file

@ -0,0 +1,19 @@
function vitally-reset-database
set -l current_directory $(pwd)
cd ~/code/Vitallyio/vitally/master/
# destroy and recreate docker containers
docker-compose down -v
docker-compose up -d
# setup the databases
PGPASSWORD=password dev/setup_dev_dbs.sh -h localhost -U postgres -p 5432 -w
cd $current_directory
# seed the empty environment
yarn migrate
yarn seed:plans
yarn seed --subdomain dev --organizations 15 --accounts 60
end