· 9 years ago · Jan 30, 2017, 04:40 AM
1## 1. Set up the folder structure
2```
3/mvfa
4 /mvfa
5 /static
6 /templates
7```
8
9## 2. Create the database schema
10```
11drop table if exists entries;
12create table entries (
13 id integer primary key autoincrement,
14 title text not null,
15 'text' text not null
16);
17```