Skip to content

๐Ÿ๐Ÿ’พ Web GUI for connecting to modifying databases & data.

Notifications You must be signed in to change notification settings

toddbirchard/pythonmyadmin

Repository files navigation

PythonMyAdmin

Python Flask Dash Flask-SQLAlchemy GitHub Last Commit GitHub Issues GitHub Stars GitHub Forks

Lightweight Python GUI for exploring and modifying data in database. Spoof of PhpMyAdmin - not affiliated in any way.

Getting Started

Replace the values in .env.example with your values and rename this file to .env:

  • FLASK_APP: Entry point of your application (should be wsgi.py).
  • FLASK_DEBUG: The environment to run your app in (either development or production).
  • SECRET_KEY: Randomly generated string of characters used to encrypt your app's data.
  • SQLALCHEMY_DATABASE_URI: Connection URI of a SQL database

Never to commit secrets saved in .env files to Github.

Environment Variables

Get up and running with make deploy:

$ git clone https://github.com/toddbirchard/pythonmyadmin.git
$ cd pythonmyadmin
$ make deploy