├── .gitignore ├── .travis.yml ├── DEPLOY.md ├── INSTALL.md ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── civic.json ├── env.sample ├── gloss ├── __init__.py ├── errors.py ├── models.py ├── views.py └── wsgi.py ├── manage.py ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 201bae6698f6_added_search.py │ ├── 4614666a279f_renamed_column_user_to_user_name.py │ └── 578b43a08697_initial_migration.py ├── requirements.txt ├── runtime.txt ├── static └── gloss-bot-demo.gif └── tests ├── __init__.py ├── test_base.py ├── test_bot.py └── test_bot_search.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .env 3 | venv-glossary-bot 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/DEPLOY.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn gloss.wsgi:app --log-file=- 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/app.json -------------------------------------------------------------------------------- /civic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/civic.json -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/env.sample -------------------------------------------------------------------------------- /gloss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/gloss/__init__.py -------------------------------------------------------------------------------- /gloss/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/gloss/errors.py -------------------------------------------------------------------------------- /gloss/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/gloss/models.py -------------------------------------------------------------------------------- /gloss/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/gloss/views.py -------------------------------------------------------------------------------- /gloss/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/gloss/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/manage.py -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/201bae6698f6_added_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/migrations/versions/201bae6698f6_added_search.py -------------------------------------------------------------------------------- /migrations/versions/4614666a279f_renamed_column_user_to_user_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/migrations/versions/4614666a279f_renamed_column_user_to_user_name.py -------------------------------------------------------------------------------- /migrations/versions/578b43a08697_initial_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/migrations/versions/578b43a08697_initial_migration.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.6 2 | -------------------------------------------------------------------------------- /static/gloss-bot-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/static/gloss-bot-demo.gif -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/tests/test_bot.py -------------------------------------------------------------------------------- /tests/test_bot_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/glossary-bot/HEAD/tests/test_bot_search.py --------------------------------------------------------------------------------