Sign in to access MinerSheets revolutionary features
Try searching with different keywords
Quick introduction to MinerSheets and your first dynamic model
Get MinerSheets running on your machine in 5 minutes. This is a quick start guide for developers. For end-users, see the User Guide.
MinerSheets is a revolutionary Dynamic Model Factory built with Django 4.2. It allows users to create database models through a web interface, combining Google AppSheet concepts with pure Django implementation excellence.
Key technical features for developers:
Get the latest version from GitHub:
git clone https://github.com/diofis-enterprise/MinerSheets.git cd MinerSheets
Choose your preferred method:
# Start all services with Docker docker-compose -f config/docker-compose.yml up -d # Run migrations docker-compose -f config/docker-compose.yml exec web python manage.py migrate # Create superuser docker-compose -f config/docker-compose.yml exec web python manage.py createsuperuser
# Create virtual environment python3 -m venv venv_dev source venv_dev/bin/activate # Install dependencies pip install -r requirements.txt -r requirements-dev.txt # Start PostgreSQL (Docker) docker-compose -f config/docker-compose.yml up -d db # Run migrations python manage.py migrate # Create superuser python manage.py createsuperuser
# Already running from step 2! # Access at: http://localhost:9320
✅ Visit http://localhost:9320
python manage.py runserver 0.0.0.0:9319
✅ Visit http://localhost:9319
Public homepage with Community Edition links
Login with superuser → /admin/
Manage models and data → /dashboard/
RESTful API reference → /api/docs/
Now you're ready to contribute! Check out these resources: