mirror of
https://github.com/ArthurDanjou/artdanj-api.git
synced 2026-01-14 12:14:33 +01:00
16 lines
392 B
Plaintext
Executable File
16 lines
392 B
Plaintext
Executable File
/*
|
|
|--------------------------------------------------------------------------
|
|
| Ace Commands
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This file is the entry point for running ace commands.
|
|
|
|
|
*/
|
|
|
|
require('reflect-metadata')
|
|
|
|
const { Ignitor } = require('@adonisjs/core/build/standalone')
|
|
new Ignitor(__dirname)
|
|
.ace()
|
|
.handle(process.argv.slice(2))
|