-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore] add secrets + improved tests + expanded types
- Loading branch information
Showing
29 changed files
with
924 additions
and
799 deletions.
There are no files selected for viewing
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,29 @@ | ||
# chainfury server | ||
# ================ | ||
# These are the environment variables that are used by the chainfury_server | ||
# For chainfury jump below to the chainfury section | ||
|
||
# Required | ||
# -------- | ||
|
||
# URL to the database for chainfury server, uses sqlalchemy, so most things should work | ||
CFS_DATABASE="db_drivers://username:password@host:port/db_name" | ||
|
||
# (once in a lifetime) secret string for creating the JWT secrets | ||
JWT_SECRET="secret" | ||
|
||
# (once in a lifetime) password to store the user secrets | ||
CFS_SECRETS_PASSWORD="password" | ||
|
||
# chainfury | ||
# ========= | ||
# These are the environment variables that are used by the chainfury | ||
|
||
# To store all the file and data in the chainfury server | ||
CF_FOLDER="~/cf" | ||
|
||
# (client mode) the URL for the chainfury server | ||
CF_URL="" | ||
|
||
# (client mode) the token for the chainfury server | ||
CF_TOKEN="" |
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 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 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
Oops, something went wrong.