-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: deployment, localenv * docs: add links to docker-compose yaml files * feat: rename fynbos -> Cloud Nine Wallet and local-bank -> Happy Life Bank * fix(localenv): tb docker-compose * chore(localenv): add image source * fix: formatting * docs: env variables * docs: env variables * docs: add prices/rates to integration * docs: add missing env variable desciptions * docs: placeholder for describing prod env * docs: reference asset code * docs: review comments * chore: remove unneccessary docker-compose files * feat(localenv): rename ilp addresses * fix(localenv): rename databases * fix(localenv): docker-compose location for postgres localenv * feat(localenv): organize into directories * feat(localenv): rename services and use hostname key * style(localenv): rename commands * fix: psql start and stop commands * docs: update webhook events * fix: docs table * docs: fix link Co-authored-by: Brandon Wilson <[email protected]> * fix(localenv): hostname networking issue --------- Co-authored-by: Brandon Wilson <[email protected]>
- Loading branch information
1 parent
5ade950
commit c3dbb42
Showing
29 changed files
with
437 additions
and
493 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
CREATE USER cloud_nine_wallet_backend WITH PASSWORD 'cloud_nine_wallet_backend'; | ||
CREATE DATABASE cloud_nine_wallet_backend; | ||
ALTER DATABASE cloud_nine_wallet_backend OWNER TO cloud_nine_wallet_backend; | ||
|
||
CREATE USER cloud_nine_wallet_auth WITH PASSWORD 'cloud_nine_wallet_auth'; | ||
CREATE DATABASE cloud_nine_wallet_auth; | ||
ALTER DATABASE cloud_nine_wallet_auth OWNER TO cloud_nine_wallet_auth; | ||
|
||
CREATE USER happy_life_bank_backend WITH PASSWORD 'happy_life_bank_backend'; | ||
CREATE DATABASE happy_life_bank_backend; | ||
ALTER DATABASE happy_life_bank_backend OWNER TO happy_life_bank_backend; | ||
|
||
CREATE USER happy_life_bank_auth WITH PASSWORD 'happy_life_bank_auth'; | ||
CREATE DATABASE happy_life_bank_auth; | ||
ALTER DATABASE happy_life_bank_auth OWNER TO happy_life_bank_auth; |
Oops, something went wrong.