add a little bit more detail to installation instructions

This commit is contained in:
Kyle Mahan 2015-08-14 08:21:48 -07:00
parent ebf222c51d
commit fc3f9a7bed

View file

@ -8,15 +8,27 @@ Supports mf2 h-feed and xml feeds (thanks to Universal Feed Parser).
Installation Installation
---------- ----------
How to run your own instance of Woodwind. The default configuration uses How to run your own instance of Woodwind. The default configuration
SQLite, so no database setup is necessary. uses SQLite, so no database setup is necessary.
```bash ```bash
git clone https://github.com/kylewm/woodwind.git git clone https://github.com/kylewm/woodwind.git
cd woodwind cd woodwind
```
Set up the virtualenv and install dependencies.
```bash
virtualenv --python=/usr/bin/python3 venv virtualenv --python=/usr/bin/python3 venv
pip install -r requirements.txt pip install -r requirements.txt
```
Use the basic SQLite configuration, create database tables and run Woodwind.
```bash
cp woodwind.cfg.template woodwind.cfg cp woodwind.cfg.template woodwind.cfg
python init_db.py python init_db.py
uwsgi woodwind-dev.ini uwsgi woodwind-dev.ini
``` ```
Now visit localhost:3000, and you should see the login screen!