Skip to content
Permalink
e2731c8385
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (10 sloc) 356 Bytes
#!/usr/bin/env node
'use strict'
const port = 8080
const path = require('path')
const db = require('./db')
const dbcontext = new db.SqliteDbContext(path.join(__dirname, 'app.db'))
const app = require('./app')
// inject the db context
app.context.db = dbcontext
module.exports = app.listen(port, async() => console.log(`listening on port ${port}`))