Titan/webapp
Jeremy Zhang 8f56bea4cc Resolves #37, basic Discord markdown parsing
Adds support for bold, italics, underline, strikethrough, code, and blockcode (no Syntax highlighting yet)
2017-08-10 01:00:14 +00:00
..
alembic Move devs to the administrators table 2017-07-22 02:06:45 +00:00
titanembeds Resolves #37, basic Discord markdown parsing 2017-08-10 01:00:14 +00:00
tmp Initial structure for discordbot addition 2017-05-02 18:37:24 +00:00
alembic.example.ini Implement alemic database migrations 2017-05-30 20:34:29 -07:00
config.example.py Initial structure for discordbot addition 2017-05-02 18:37:24 +00:00
README.md Initial structure for discordbot addition 2017-05-02 18:37:24 +00:00
requirements.txt Remove beaker cache for now... 2017-05-08 21:09:11 -07:00
run_c9.py Make c9 flask threaded 2017-05-31 19:28:35 +00:00
run.py Implemented Bot Admin Blueprint 2017-07-10 04:37:35 +00:00

Titan - WebApp Portion

The webapp portion handles the frontend (it's what the users see). The webapp highly depends on the discordbot to push websockets data to the database.

Installation

  1. Clone the repo (make sure you have Python 2.7 installed on your system. This webapp portion depends on that specific python version)
  2. Install the pip requirements pip install -r requirements.txt
  3. Clone config.example.py and rename it to config.py. Edit the file to your standards
  4. Run the development web via python run.py -- Though we suggest to use a better server software (look into gunicorn, nginx, uwsgi, etc)