-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #276 from schultek/fix/builder-imports
Fix/builder imports
- Loading branch information
Showing
85 changed files
with
3,311 additions
and
1,071 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Use this file to store passwords to services that your server you use. When | ||
# the server starts, the passwords will be automatically loaded and can be | ||
# accessed from the `session.passwords` field. If you don't have access to a | ||
# session object, passwords can also be accessed from | ||
# `Serverpod.instance.passwords`. You can provide different passwords for | ||
# different run configurations. If you want the same password for any | ||
# configuration used, place it under `shared`. | ||
# | ||
# Note that this file should not be under version control. Store it in a safe | ||
# place. | ||
|
||
# Save passwords used across all configurations here. | ||
shared: | ||
mySharedPassword: 'my password' | ||
|
||
# These are passwords used when running the server locally in development mode | ||
development: | ||
database: 'CHANGE_ME' | ||
redis: 'CHANGE_ME' | ||
|
||
# The service secret is used to communicate between servers and to access the | ||
# service protocol. | ||
serviceSecret: 'CHANGE_ME_______________________' | ||
|
||
# Passwords used in your staging environment if you use one. The default setup | ||
# use a password for Redis. | ||
staging: | ||
database: 'CHANGE_ME' | ||
serviceSecret: 'CHANGE_ME_______________________' | ||
|
||
# Passwords used in production mode. | ||
production: | ||
database: 'CHANGE_ME' | ||
serviceSecret: 'CHANGE_ME_______________________' |
Oops, something went wrong.