switched to configurable db

This commit is contained in:
Joachim Lusiardi 2016-05-05 15:06:29 +02:00
parent e1e5fe7725
commit c5305caf36
3 changed files with 3 additions and 4 deletions

View File

@ -2,3 +2,4 @@ Flask
Flask-SQLAlchemy
Flask-Security
Flask-WTF
PyMySQL

View File

@ -11,7 +11,6 @@ from flask_security.core import current_user
from flask_sqlalchemy import SQLAlchemy
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////data/rollerverbrauch.db'
app.config['SECURITY_PASSWORD_HASH'] = 'pbkdf2_sha512'
app.config['SECURITY_REGISTERABLE'] = True
app.config['SECURITY_CHANGEABLE'] = True
@ -217,4 +216,3 @@ def get_statistics():
for vehicle in current_user.vehicles:
stats.append(VehicleStats(vehicle))
return render_template('statistics.html', data=stats)

View File

@ -92,7 +92,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Rollerverbrauch 0.1</title>
<title>refuel journal</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="{{ url_for('static', filename='apple-touch-icon-57.png') }}">
@ -134,7 +134,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="{{ url_for('get_pit_stops') }}">Rollerverbrauch</a>
<a class="navbar-brand" href="{{ url_for('get_pit_stops') }}">refuel journal</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">