UNPKG
mira
Version:
latest (1.5.0)
1.5.0
1.5.0-beta
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
0.0.3
0.0.2
NearForm Accelerator for Cloud Native Serverless AWS
github.com/nearform/mira
nearform/mira
mira
/
bin
/
cli.js
16 lines
(12 loc)
•
270 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env node
require
(
'source-map-support'
).
install
()
const
{
MiraBootstrap
} =
require
(
'../dist/src/cdk/bootstrap'
)
async
function
run
(
) {
try
{
await
new
MiraBootstrap
().
initialize
() }
catch
(e) {
console
.
error
(e) process.
exit
(
1
) } }
run
()