https://github.com/toddbirchard/broiestbot-db
🤖🔍 Web GUI for searching broiestbot commands.
https://github.com/toddbirchard/broiestbot-db
dash database database-management gui plotly python
Last synced: about 1 month ago
JSON representation
🤖🔍 Web GUI for searching broiestbot commands.
- Host: GitHub
- URL: https://github.com/toddbirchard/broiestbot-db
- Owner: toddbirchard
- Created: 2024-09-29T19:42:50.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2026-02-10T01:17:49.000Z (4 months ago)
- Last Synced: 2026-02-10T06:44:36.458Z (4 months ago)
- Topics: dash, database, database-management, gui, plotly, python
- Language: Python
- Homepage: https://broiest.com
- Size: 1.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# broiestbot-db





[](https://github.com/toddbirchard/broiestbot-db/issues)
[](https://github.com/toddbirchard/broiestbot-db/stargazers)
[](https://github.com/toddbirchard/broiestbot-db/network)
Lightweight Python GUI for exploring commands available to Chatango chatbot, [broiestbot](https://github.com/toddbirchard/broiestbot).
UI is branded version of [pythonmyadmin](https://github.com/toddbirchard/pythonmyadmin)
## Getting Started
### Environment Variables
Replace the values in **.env.example** with your values and rename this file to **.env**:
Ensure your **.env** configuration is included in a **.gitignore** file before adding or committing secrets by accident.
* `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.*
### Start Locally
Get up and running with `make run`:
```shell
$ git clone https://github.com/toddbirchard/broiestbot-db.git
$ cd broiestbot-db
$ make run
```