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

2 months ago
3 months ago
2 months ago
3 months ago
3 months ago
2 months ago
3 months ago
2 months ago
3 months ago
2 months ago
2 months ago
  1. # RAILS CONSTANTS
  2. # ---------------
  3. # restart required after change!
  4. # RAILS_PORT=7500
  5. # DATABASE_HOST=localhost
  6. # HOT CONSTANTS
  7. # -------------
  8. STIMULUS_DEBUG=false
  9. LOG_ACTIVE_RECORD=false
  10. LOG_ACTION_VIEW=false
  11. # with default value, type gets inferred from
  12. INTEGER=1
  13. STRING=456
  14. BOOLEAN=true
  15. # with no default value (evaluated to nil), type must be defined expressively otherwise it reverts to a string type
  16. # INTEGER=:integer
  17. # BOOLEAN=:boolean
  18. # STRING=