Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 7 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ dripemails.org/
### Prerequisites

- **Python 3.11+** (3.12.3 recommended)
- **Node.js 18+** (for frontend development)
- **MySQL/PostgreSQL** database
- **MySQL/PostgreSQL/SQLite** database
- **Redis** (for caching and Celery)

### Installation
Expand All @@ -95,34 +94,30 @@ dripemails.org/
pip install -r requirements.txt
```

3. **Set up frontend**
```bash
npm install
npm run build
```

4. **Configure environment**

3. **Configure environment**
```bash
cp docs/env.example .env
# Edit .env with your configuration
```

5. **Run migrations**
4. **Run migrations**
```bash
python manage.py migrate
```

6. **Create superuser**
5. **Create superuser**
```bash
python manage.py createsuperuser
```

7. **Start the development server**
6. **Start the development server**
```bash
python manage.py runserver
```

8. **Start the SMTP server** (optional)
7. **Start the SMTP server** (optional)
```bash
python manage.py run_smtp_server --debug --port 1025
```
Expand Down