4e65617f08
* Upgrade to v0.7 More goodies Revert cargo.toml Fix cargo toml * Generate offline sqlx schemas Fix data-observatory Fix credential-storage Fix gateway-storage Fix client-core/-gateways-storage Generate offline schemas for nym-api as well * Update nym-api after rebase --------- Co-authored-by: Andrej Mihajlov <andrej@nymtech.net>
14 lines
329 B
Bash
Executable File
14 lines
329 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# .env is generated in build.rs
|
|
source .env
|
|
|
|
# Launching a container in such a way that it's destroyed after you detach from the terminal:
|
|
docker compose up
|
|
|
|
# docker exec -it nym-data-observatory-pg /bin/bash
|
|
# psql -U youruser -d yourdb
|
|
|
|
echo "Tearing down containers to have a clean slate"
|
|
docker compose down -v
|