mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 22:12:44 +03:00
13 lines
376 B
Bash
13 lines
376 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
docker-compose -p sanity kill
|
||
|
docker-compose -p sanity down --volumes
|
||
|
docker-compose -p sanity up -d --force-recreate --renew-anon-volumes
|
||
|
./setup-elastic.sh
|
||
|
|
||
|
# Creae workspace record in accounts
|
||
|
./tool.sh create-workspace sanity-ws -o SanityTest
|
||
|
# Create user record in accounts
|
||
|
./tool.sh create-account user1 -f John -l Appleseed -p 1234
|
||
|
|
||
|
./restore-workspace.sh
|