blob: 83bb85afb9fec1280979700cca9386146217d2d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# marks.kitchen
My personal website engine. Allows for posting content from a web interface.
Uses handlesbars templates and a database backend via sequelize.
Configuration:
- Requires mysql database. Include a `config.json` in `src` directory with the following structure:
```json
{
"database": {
"host": "localhost",
"user": "YOUR_USER",
"database": "YOUR_DB",
"password": "YOUR_PWD"
}
}
```
|