Lightweight Python GUI for exploring and modifying data in database. Spoof of PhpMyAdmin - not affiliated in any way.
Replace the values in .env.example with your values and rename this file to .env:
FLASK_APP: Entry point of your application (should bewsgi.py).FLASK_DEBUG: The environment to run your app in (eitherdevelopmentorproduction).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.
Get up and running with make deploy:
$ git clone https://github.com/toddbirchard/pythonmyadmin.git
$ cd pythonmyadmin
$ make deploy