Initial Flitter Commit

This commit is contained in:
garrettmills
2020-04-16 15:38:01 -05:00
parent 49911f1bed
commit dbdaf775df
41 changed files with 3873 additions and 613 deletions

17
config/app.config.js Normal file
View File

@@ -0,0 +1,17 @@
const app_config = {
/*
* The name of the application.
* Used through-out the application as the proper display name.
*/
name: env("APP_NAME", "Flitter"),
/*
* URL of the application.
* Can be used to generate fully-qualified links.
*/
url: env("APP_URL", "http://localhost:8000/"),
}
module.exports = app_config