From eb9c8cd63a4d2bd5da5fc39ec50320244a949a16 Mon Sep 17 00:00:00 2001 From: Aidan Turgut <82731582+AidanTurgut@users.noreply.github.com> Date: Sat, 18 Oct 2025 14:33:27 -0500 Subject: [PATCH] Update README.md Not using node, strictly a python project --- README.md | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index f4f97b1..e9f13cf 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ```