This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
teemant-old/index.js

9 lines
175 B
JavaScript
Executable File

#!/usr/bin/env node
const path = require('path')
try {
require(path.join(__dirname, 'app'))
} catch (e) {
console.error('Please build the application before running.')
}