mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-03-09 15:40:09 +00:00
Move schema to homedir, add more docs
Update configs
This commit is contained in:
parent
33a8cdb523
commit
e3783a4919
6 changed files with 34 additions and 16109 deletions
|
@ -6,8 +6,10 @@ VNC_CLEANUP_TOKEN = environ.get('PROXSTAR_VNC_CLEANUP_TOKEN', '')
|
|||
|
||||
# Development options
|
||||
# Determines weather or not to run STARRS queries (for doing stuff like checking for available IPs)
|
||||
USE_STARRS = environ.get('PROXSTAR_USE_STARRS', 'True')
|
||||
FORCE_STANDARD_USER = environ.get('PROXSTAR_FORCE_STANDARD_USER', 'False')
|
||||
USE_STARRS = environ.get('PROXSTAR_USE_STARRS', 'True').lower() in ('true', '1', 't')
|
||||
# If you're an RTP and want to see a normal user's homepage view, set this to True.
|
||||
FORCE_STANDARD_USER = environ.get('PROXSTAR_FORCE_STANDARD_USER', 'False').lower() in ('true', '1', 't')
|
||||
|
||||
|
||||
# Flask
|
||||
IP = environ.get('PROXSTAR_IP', '0.0.0.0')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue