https://github.com/toddbirchard/pythonmyadmin
🐍💾 Web GUI for connecting to modifying databases & data.
https://github.com/toddbirchard/pythonmyadmin
cms data database flask gui plotly plotly-dash python3
Last synced: about 11 hours ago
JSON representation
🐍💾 Web GUI for connecting to modifying databases & data.
- Host: GitHub
- URL: https://github.com/toddbirchard/pythonmyadmin
- Owner: toddbirchard
- Created: 2019-05-10T02:29:38.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-01-12T00:29:45.000Z (3 months ago)
- Last Synced: 2025-03-27T23:11:17.751Z (18 days ago)
- Topics: cms, data, database, flask, gui, plotly, plotly-dash, python3
- Language: Python
- Homepage: https://pythonmyadmin.com
- Size: 566 KB
- Stars: 21
- Watchers: 1
- Forks: 5
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - toddbirchard/pythonmyadmin - 🐍💾 Web GUI for connecting to modifying databases & data. (Python)
README
# PythonMyAdmin





[](https://github.com/toddbirchard/pythonmyadmin/issues)
[](https://github.com/toddbirchard/pythonmyadmin/stargazers)
[](https://github.com/toddbirchard/pythonmyadmin/network)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`:
```shell
$ git clone https://github.com/toddbirchard/pythonmyadmin.git
$ cd pythonmyadmin
$ make deploy
```