Bare Minimum Framework is exactly what it sounds like - the absolute bare minimum interface for managing JSON data without touching the command line. It automatically generates CRUD interfaces from simple template files, allowing you to create, read, update, and delete structured data with zero frontend development.
Because sometimes you just need a simple interface to manipulate data without the headache of building a UI. Perfect for:
- Building proof-of-concept applications
- Managing configuration for simple apps
- Administering Discord bots or other automation tools
- Quick internal tools where functionality trumps aesthetics
- When "good enough" is actually good enough
The framework reads a folder structure containing JSON templates and data files, then automatically generates a minimalist interface for manipulating that data:
EXAMPLE
/data/
├── channels/
│ ├── template.json # Defines structure and form fields
│ ├── channel_a.json
│ └── channel_b.json
├── characters/
│ ├── template.json
│ ├── character_a.json
│ └── character_b.json
Each subfolder in the /data directory represents a different "object type" that can be managed through the dashboard. The template.json file in each folder defines the structure and editable fields for that object type.
- Zero UI Development: No HTML, CSS, or frontend code to write
- Auto-Generated Forms: Creates appropriate form elements based on data types
- String Manipulation: Edit any string-like object within JSON
- Image Link Rendering: Preview and update image links
- Full CRUD Operations: Create, read, update, and delete JSON objects
- Instant Setup: Point it at a folder and you're good to go
- No Database Required: Works directly with the file system
-
Install the package:
pip install -r requirements.txt -
Create your data folder structure with template files:
/data/ └── your-object-type/ └── template.json -
Start the server:
flask --app webapp.app run -
Navigate to
http://localhost:5000and start managing your data
The template.json file uses a simple format to define editable fields:
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"path": "data",
"fields": {
"avatar": {
"type": "string",
"format": "uri",
"description": "Character avatar (URL)"
},
"name": {
"type": "string",
"minLength": 1
},
"description": { "type": "string" },
"personality": { "type": "string" },
"creator_notes": { "type": "string" }
},
"required": ["avatar", "name"]
}- No authentication or user management (if you need those, you're using the wrong tool)
- Limited field types and customization (literally only works with string, will add int and float support)
- Not designed for high-volume data (will add standard database reader)
- No relational data support (same as above)
- Simple, functional UI with zero frills
- Backend developers who hate CSS
- Solo developers building internal tools
- Anyone who needs a quick admin interface
- People who value function over form
- Developers who think "it's just a config panel, why am I spending days on this?"
Pull requests welcome. The bar is intentionally low - it's called "Bare Minimum" for a reason.