officehours/README.md

29 lines
832 B
Markdown
Raw Permalink Normal View History

2016-02-08 23:12:09 +00:00
# officehours
A small experiment with Flask/Hy/Postgres. Doesn't do much yet.
## Initialization
Start with initializing the virtual environment and Postgres
# From the project directory:
2016-02-08 23:12:09 +00:00
$ virtualenv venv
$ . ./venv/bin/activate
$ pip install hy psycopg2 flask
$ sudo -u postgres psql postgres
> CREATE DATABASE officehours;
> CREATE USER officehours;
> ALTER USER officehours WITH UNENCRYPTED PASSWORD '<password>';
> ALTER USER officehours LOGIN;
> GRANT ALL PRIVILEGES ON DATABASE officehours TO officehours;
> \CONNECT officehours;
> CREATE EXTENSION citext;
> CREATE EXTENSION btree_gist;
> CREATE EXTENSION plv8;
> ^d
2016-02-08 23:12:09 +00:00
Current functionality is demonstrated with:
$ psql -h localhost -U officehours -d officehours -f officehours.sql
$ hy play.hy