Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added flask admin #331

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions app/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from flask_admin import Admin
from flask_admin.contrib.sqla import ModelView

from app import db, app
from .models import Resource, Category, Language


def run_flask_admin():
admin = Admin(app)
admin.add_view(ModelView(Resource, db.session))
admin.add_view(ModelView(Category, db.session))
admin.add_view(ModelView(Language, db.session))

# end
2 changes: 2 additions & 0 deletions configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ class Config:

SQLALCHEMY_DATABASE_URI = f"postgresql://{pg_user}:{pg_pw}@{pg_host}:5432/{pg_db}"

SECRET_KEY = os.urandom(24)

ALGOLIA_APP_ID = algolia_app_id
ALGOLIA_API_KEY = algolia_api_key
INDEX_NAME = index_name
Expand Down
53 changes: 46 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ uWSGI = "2.0.19.1"
Werkzeug = "1.0.1"
pyjwt = "^1.7.1"
cryptography = "^2.9.2"
flask-admin = "^1.5.6"

[tool.poetry.dev-dependencies]

Expand Down
3 changes: 2 additions & 1 deletion run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from app import app, cli
from app import app, cli, admin
from app.models import Category, Language, Resource, db
from werkzeug.middleware.dispatcher import DispatcherMiddleware
from prometheus_client import make_wsgi_app
Expand All @@ -8,6 +8,7 @@
app.run()

cli.register(app, db)
admin.run_flask_admin()

# Add prometheus wsgi middleware to route /metrics requests
app_dispatch = DispatcherMiddleware(app, {
Expand Down