2019-12-03 21:18:40 +01:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Providers
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Providers are building blocks for your Adonis app. Anytime you install
|
|
|
|
| a new Adonis specific package, chances are you will register the
|
|
|
|
| provider here.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
const providers = [
|
|
|
|
'@adonisjs/framework/providers/AppProvider',
|
|
|
|
'@adonisjs/framework/providers/ViewProvider',
|
|
|
|
'@adonisjs/lucid/providers/LucidProvider',
|
|
|
|
'@adonisjs/bodyparser/providers/BodyParserProvider',
|
|
|
|
'@adonisjs/cors/providers/CorsProvider',
|
|
|
|
'@adonisjs/shield/providers/ShieldProvider',
|
|
|
|
'@adonisjs/session/providers/SessionProvider',
|
|
|
|
'@adonisjs/auth/providers/AuthProvider',
|
|
|
|
'@adonisjs/validator/providers/ValidatorProvider',
|
2020-01-24 01:58:43 +01:00
|
|
|
'@adonisjs/antl/providers/AntlProvider',
|
2019-12-03 21:18:40 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Ace Providers
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Ace providers are required only when running ace commands. For example
|
|
|
|
| Providers for migrations, tests etc.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
const aceProviders = [
|
|
|
|
'@adonisjs/lucid/providers/MigrationsProvider'
|
|
|
|
]
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Aliases
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Aliases are short unique names for IoC container bindings. You are free
|
|
|
|
| to create your own aliases.
|
|
|
|
|
|
|
|
|
| For example:
|
|
|
|
| { Route: 'Adonis/Src/Route' }
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
const aliases = {}
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Commands
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you store ace commands for your package
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
const commands = []
|
|
|
|
|
|
|
|
module.exports = { providers, aceProviders, aliases, commands }
|