Life is but a dream.
Go to file
2019-12-21 16:42:08 -05:00
static adding tag clears the input field 2019-12-21 16:42:08 -05:00
templates fourth commit 2019-12-17 18:46:54 -05:00
.gitignore first commit 2019-12-06 18:13:43 -05:00
config.py.template first commit 2019-12-06 18:13:43 -05:00
filters.py third commit 2019-12-11 19:47:19 -05:00
LICENSE first commit 2019-12-06 18:13:43 -05:00
README.md first commit 2019-12-06 18:13:43 -05:00
scrape_quest.py fifth commit 2019-12-20 15:11:21 -05:00
voyage.py third commit 2019-12-11 19:47:19 -05:00
voyage.sql fourth commit 2019-12-17 18:46:54 -05:00

Voyage

Life is a journey.

Requirements

Python 3.7+
PostgreSQL 11.5+
Python packages: gunicorn aiohttp aiohttp_jinja2 asyncpg uvloop

Install

$ psql
postgres=# CREATE DATABASE "voyage";
postgres=# CREATE USER "voyage" WITH PASSWORD 'password';
postgres=# GRANT ALL PRIVILEGES ON DATABASE "voyage" TO "voyage";
postgres=# \q
  1. Get on the floor
  2. Walk the dinosaur

Usage

gunicorn voyage:init_app --bind localhost:5450 --worker-class aiohttp.GunicornWebWorker