https://github.com/jumagu/django-saas
https://github.com/jumagu/django-saas
django pricing saas-boilerplate social-accounts stripe subscriptions user-groups
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/jumagu/django-saas
- Owner: jumagu
- Created: 2024-08-22T18:58:05.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-31T17:25:07.000Z (over 1 year ago)
- Last Synced: 2025-10-30T06:35:38.791Z (8 months ago)
- Topics: django, pricing, saas-boilerplate, social-accounts, stripe, subscriptions, user-groups
- Language: Python
- Homepage: https://django-saas-prod.up.railway.app
- Size: 120 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SaaS Project
This is a SaaS (Software as a Service) boilerplate.
## Features
- User authentication and authorization
- Subscription management
- Payment integration with Stripe
- Admin dashboard
## Installation
1. Clone the repository:
```bash
git clone https://github.com/jumagu/django-saas.git
cd django-saas
```
2. Create a virtual environment and activate it:
```bash
python -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
```
3. Install the dependencies:
```bash
pip install -r requirements.txt
```
4. Apply migrations:
```bash
python manage.py migrate
```
5. Create a superuser:
```bash
python manage.py createsuperuser
```
6. Run the development server:
```bash
python manage.py runserver
```
## Usage
- Access the App at `http://127.0.0.1:8000/`
- Access the admin dashboard at `http://127.0.0.1:8000/admin/`