ICS React Native App
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 16 lines 359 B view raw
1import { build } from "./server"; 2import { DATABASE_URL, PORT } from "./config"; 3import { Database } from "sqlite-async"; 4import { seed } from "./seeder"; 5 6(async () => { 7 const db = await Database.open(DATABASE_URL); 8 9 await seed(db); 10 11 const app = build({ db }); 12 13 app.listen(PORT, () => { 14 console.log(`Server running on port ${PORT}`); 15 }); 16})();