mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
Updating settings & README
This commit is contained in:
parent
61796b2145
commit
ad3f6e5651
2 changed files with 52 additions and 14 deletions
|
@ -14,8 +14,8 @@ PSQL_DB = ''
|
|||
|
||||
SQLALCHEMY_DATABASE_URI = os.environ.get('SQLALCHEMY_DATABASE_URI', 'postgresql://{user}:{pw}@localhost/{db}').format(user=PSQL_USER, pw=PSQL_PASS, db=PSQL_DB)
|
||||
|
||||
SESSION_COOKIE_NAME = os.environ.get('{coincode}_SESSION_COOKIE_NAME', '{coincode}_id').format(coincode=COINCODE)
|
||||
SESSION_PREFIX = os.environ.get('{coincode}_SESSION_PREFIX', 'session:').format(coincode=COINCODE)
|
||||
SESSION_COOKIE_NAME = os.environ.get('{coincode}_SESSION_COOKIE_NAME', '{coincode}_id').format(coincode=COINCODE.upper())
|
||||
SESSION_PREFIX = os.environ.get('{coincode}_SESSION_PREFIX', 'session:').format(coincode=COINCODE.upper())
|
||||
|
||||
REDIS_HOST = os.environ.get('REDIS_HOST', '127.0.0.1')
|
||||
REDIS_PORT = int(os.environ.get('REDIS_PORT', 6379))
|
||||
|
@ -28,7 +28,7 @@ BIND_PORT = os.environ.get("BIND_PORT", 5004)
|
|||
if not BIND_PORT:
|
||||
raise Exception("BIND_PORT missing")
|
||||
|
||||
HOSTNAME = os.environ.get("{coincode}_HOSTNAME", socket.gethostname()).format(coincode=COINCODE)
|
||||
HOSTNAME = os.environ.get("{coincode}_HOSTNAME", socket.gethostname()).format(coincode=COINCODE.upper())
|
||||
|
||||
# If using a local RPC, no need for --rpc-login credentials unless you're binding wallet-rpc to 0.0.0.0. If you are, you're bad.
|
||||
# elif, remote wallet-rpc, enable --rpc-login and enter credentials below.
|
||||
|
@ -79,4 +79,4 @@ What will be delivered? What goals will be reached?
|
|||
#### Why you?
|
||||
|
||||
What skills and experience do you have?
|
||||
""".strip().format(coincode=COINCODE)
|
||||
""".strip().format(coincode=COINCODE.upper())
|
Loading…
Add table
Add a link
Reference in a new issue