centered quest title and changed session storage to server side
This commit is contained in:
parent
34b96f49de
commit
9903b79252
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,5 +1,5 @@
|
|||
__pycache__/
|
||||
*.cfg
|
||||
flask_session/
|
||||
*.swp
|
||||
secret_key
|
||||
db_key
|
||||
|
|
|
@ -4,7 +4,7 @@ By popular demand, I'm building a better anonkun. It doesn't do much right now t
|
|||
## Requirements
|
||||
Python 3.6+
|
||||
MariaDB 10.2+
|
||||
Python packages: `flask flask_socketio flask-paranoid passlib argon2_cffi bleach`
|
||||
Python packages: `flask flask_socketio flask-paranoid passlib argon2_cffi bleach flask-session`
|
||||
|
||||
## Install
|
||||
```
|
||||
|
|
|
@ -7,6 +7,7 @@ import time
|
|||
|
||||
from flask import Flask
|
||||
from flask_paranoid import Paranoid
|
||||
from flask_session import Session
|
||||
from flask_socketio import SocketIO
|
||||
|
||||
from events import socketio
|
||||
|
@ -51,6 +52,8 @@ app = Flask(__name__)
|
|||
app.wsgi_app = ReverseProxied(app.wsgi_app)
|
||||
app.register_blueprint(views)
|
||||
app.config['MAX_CONTENT_LENGTH'] = 16 * 1024 * 1024
|
||||
app.config['SESSION_TYPE'] = 'filesystem'
|
||||
Session(app)
|
||||
socketio.init_app(app)
|
||||
paranoid = Paranoid(app)
|
||||
paranoid.redirect_view = 'views.index'
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
{% block content %}
|
||||
<div id="questContainer">
|
||||
<div id="questBody">
|
||||
<h1>{{ quest_title }}</h1>
|
||||
<center><h1>{{ quest_title }}</h1></center>
|
||||
<table id="questPosts">
|
||||
{% for quest_post in quest_posts %}
|
||||
<tr>
|
||||
|
|
Loading…
Reference in New Issue
Block a user