summaryrefslogtreecommitdiff
path: root/bin/rtt-init
blob: 02b9e9bfe24dae5d205a2a80a2ae18d8f634981d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

echo installing node packages
npm install -s

echo creating database
sqlite3 db < schema.sql

for M in public/*/title.sql
do
	echo registering module $(basename $(dirname $M))
	sqlite3 db < $M
done