-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathace
More file actions
22 lines (19 loc) · 621 Bytes
/
Copy pathace
File metadata and controls
22 lines (19 loc) · 621 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use strict'
/*
|--------------------------------------------------------------------------
| Ace Commands
|--------------------------------------------------------------------------
|
| The ace file is just a regular Javascript file but with no extension. You
| can call `node ace` followed by the command name and it just works.
|
| Also you can use `adonis` followed by the command name, since the adonis
| global proxies all the ace commands.
|
*/
const AceIgnitor = require('./bootstrap/http');
new AceIgnitor()
.appRoot(__dirname)
.appFile('./bootstrap/app.js')
.fireAce()
.catch(console.error);