crablog/README.md
2020-11-21 21:33:05 +01:00

43 lines
1,001 B
Markdown

# Crablog
Pure rust. Built with actix, diesel, tera, serde and sqlite3.
## Build instructions using docker
1. Clone the repository
```bash
git clone https://github.com/leonardlorenz/crablog
cd crablog
```
2. Set up your configuration file (see below)
3. Build and run the docker container (Will compile from source and thus take a while)
```bash
docker-compose up -d
```
## Configuration environment file
All configuration options are defined in .env, to be created in the same directory as this readme.
An example configuration:
```
USERNAME=yourusername
EMAIL=me@mydomain.tld
BIND_PORT=8000
ROOT_PATH=/path/to/template/directory/and/sqliteDB
SUBMIT_TOKEN=Submit!123 # token needed for submitting
```
## Routes
- / site welcome
- /blog shows the last 5 posts
- /blog/id/<id> shows a single post by id
- /blog/all shows all posts
- /blog/submit set your submit token and create posts
- /blog/edit/<id> edit, delete or hide posts
**API Routes**
- /api/blog/posts returns all posts as json