CoreID/config/app.config.js

18 lines
426 B
JavaScript
Raw Normal View History

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