Skip to content

Commit

Permalink
docs: add README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jumagu committed Dec 31, 2024
1 parent 4aa046a commit 8bd469b
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# 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/`

0 comments on commit 8bd469b

Please sign in to comment.