aboutsummaryrefslogtreecommitdiffstats
path: root/deploy.py (unfollow)
Commit message (Collapse)AuthorLines
2018-02-21Basic main page heroGravatar Gareth Coles-2/+26
2018-02-21Add warning about pre-release-ness to base templateGravatar Gareth Coles-7/+10
2018-02-21Jinja is weirdGravatar Gareth Coles-8/+10
2018-02-21Rearrange views and templatesGravatar Gareth Coles-4/+4
2018-02-20adds initial unit testing (#22)Gravatar Christopher Baklid-1/+111
* Adds Unit Testing * Adds coveralls coverage badge
2018-02-19Add VagrantfileGravatar Christopher Baklid-0/+102
* attempt to fix stacktrace when initialising logger * adds vagrantfile for local development * restart rethinkdb after setting config * fix source .profile * adds alias python=python3.6 * include more reminder of what to add in hosts file * also install snekchek in vm * update vagrant bootstrap script to properly include environment variables in bashrc
2018-02-19Readme (#23)Gravatar Christopher Baklid-0/+4
* point to wiki! * remove pytest file
2018-02-18adds favicon to header (#21)Gravatar Christopher Baklid-1/+2
2018-02-18Cleanup of base_route moduleGravatar Gareth Coles-15/+17
2018-02-18Error handlers can now handle more than one HTTP status codeGravatar Gareth Coles-4/+32
2018-02-18Register error routes on the app instead of specific blueprints #1rchtGravatar Gareth Coles-1/+1
2018-02-18adds .api to the secure websocket connection (#18)Gravatar Christopher Baklid-2/+2
2018-02-18adding one line of logging to debug a problem with rethinkdbGravatar Leon Sandøy-0/+1
2018-02-18typo in a comment was driving me nuts.Gravatar Leon Sandøy-1/+1
2018-02-18Switch back to wss://, againGravatar Gareth Coles-1/+1
2018-02-18Merge remote-tracking branch 'origin/master'Gravatar Gareth Coles-3/+3
# Conflicts: # pysite/views/ws/echo.py
2018-02-18Rename "Websocket" to "WS" to avoid confusion with the gevents-websocket ↵Gravatar Gareth Coles-11/+11
WebSocket class
2018-02-18attempt to fix stacktrace when initialising logger (#17)Gravatar Christopher Baklid-2/+1
2018-02-18Simple logging. (#16)Gravatar Leon Sandøy-15/+39
* Simple logging. I don't know if this will show up in the docker logs like inver wanted, so it probably needs testing in prod. * log level via hasattr/getattr, basicConfig instead of custom handlers * removing the empty string log call
2018-02-17Go back to using wss:// for the WS testGravatar Gareth Coles-1/+1
2018-02-17Integrate websockets into the Flask webappGravatar Gareth Coles-93/+214
2018-02-17snekchekGravatar Gareth Coles-1/+0
2018-02-17Clean up WS application a bitGravatar Gareth Coles-6/+8
2018-02-16Fix slight error in database insertionGravatar Gareth Coles-1/+1
2018-02-16API_KEY -> BOT_API_KEYGravatar Gareth Coles-1/+1
2018-02-16Simplify user API route and return changesGravatar Gareth Coles-9/+5
2018-02-16API schema validation decorator #yzuf (#15)Gravatar Gareth Coles-31/+107
* API schema validation decorator * Remove stray comma * Remove unnecessary conditional * Only cast to list when needed to