2020-02-08 01:50:10 +00:00
|
|
|
const app_config = {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The name of the application.
|
|
|
|
* Used through-out the application as the proper display name.
|
|
|
|
*/
|
2020-02-08 05:36:39 +00:00
|
|
|
name: env("APP_NAME", "unknown"),
|
2020-02-08 01:50:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* URL of the application.
|
|
|
|
* Can be used to generate fully-qualified links.
|
|
|
|
*/
|
|
|
|
url: env("APP_URL", "http://localhost:8000/"),
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = app_config
|