polls #86

Manually merged
Darks merged 13 commits from polls into dev 2021-02-20 17:53:08 +01:00
2 changed files with 8 additions and 1 deletions
Showing only changes of commit 243ae43783 - Show all commits

4
.gitignore vendored
View File

@ -5,7 +5,7 @@ app/static/avatars/
app/static/images/trophies/
# Development files
## Development files
# Flask env
.env
@ -17,6 +17,8 @@ venv/
# pipenv
Pipfile
Pipfile.lock
# Tests files
test.*
## Deployment files

View File

@ -8,3 +8,8 @@ from app.routes.forum import index, topic
from app.routes.programs import index
from app.routes.posts import edit
from app.routes.api import markdown
try:
from app.routes import test
except ImportError:
pass