-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker Published to GitHub #13
Conversation
@@ -1,4 +1,4 @@ | |||
SMF_CONFIG_NETWORK="rococo" | |||
SMF_CONFIG_NETWORK="frequencyRococo" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cleaning up the example to work out of the box
# Database | ||
SMF_CONFIG_DB_HOST=localhost | ||
SMF_CONFIG_DB_PORT=5432 | ||
SMF_CONFIG_DB_USERNAME=postgres | ||
SMF_CONFIG_DB_PASSWORD=postgres | ||
SMF_CONFIG_DB_DATABASE_NAME=faucet |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused due to switching back to sqlite
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not used
.Get("FAUCET_IGNORE_LIST") | ||
.split(",") | ||
.map((item) => item.replace('"', "")); | ||
const ignoreList = (config.Get("FAUCET_IGNORE_LIST") || "").split(",").map((item) => item.replace('"', "")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolves issues with config not always returning an empty string default.
This reverts commit 9441eaa.
Goal
The goal of this PR is to publish docker images to GitHub
Checklist
How To Test the Changes