Quick Start¶
Get your RhamaaCMS Base Template project running in 5 minutes.
1. Database Setup¶
Run migrations and create a superuser:
Follow the prompts to create your admin account.
2. Build Frontend Assets¶
Compile Tailwind CSS and JavaScript:
3. Run Development Server¶
Your site is now running!
| URL | Description |
|---|---|
http://127.0.0.1:8000/ | Home page |
http://127.0.0.1:8000/admin/ | Wagtail CMS admin |
http://127.0.0.1:8000/django-admin/ | Django admin |
4. Load Demo Data (Optional)¶
To see the template in action with sample content:
This loads:
- Sample pages
- Navigation structure
- Images and media files
Development Workflow¶
Making Changes¶
- Edit templates in
apps/home/templates/ - Edit styles in
static_src/sass/ - Edit JavaScript in
static_src/javascript/ - Rebuild assets with
pnpm run build
Watch Mode¶
For automatic rebuilding during development: