You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
461 B

# RAILS CONSTANTS
# ---------------
# restart required after change!
# RAILS_PORT=7500
# DATABASE_HOST=localhost
# HOT CONSTANTS
# -------------
STIMULUS_DEBUG=false
LOG_ACTIVE_RECORD=false
LOG_ACTION_VIEW=false
# with default value, type gets inferred from
INTEGER=1
STRING=456
BOOLEAN=true
# with no default value (evaluated to nil), type must be defined expressively otherwise it reverts to a string type
# INTEGER=:integer
# BOOLEAN=:boolean
# STRING=