Files
CoreID/config/app.config.js

18 lines
426 B
JavaScript
Raw Normal View History

2020-04-16 15:38:01 -05:00
const app_config = {
/*
* The name of the application.
* Used through-out the application as the proper display name.
*/
2020-08-23 14:07:23 -05:00
name: env("APP_NAME", "Starship CoreID"),
2020-04-16 15:38:01 -05:00
/*
* URL of the application.
* Can be used to generate fully-qualified links.
*/
url: env("APP_URL", "http://localhost:8000/"),
2020-05-30 17:21:47 -05:00
default_locale: env('APP_DEFAULT_LOCALE', 'en_US'),
2020-04-16 15:38:01 -05:00
}
module.exports = app_config