Django E-commerce Department Store
Quick start (development):
- Create a virtualenv and install deps:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt-
Copy
.env.sampleto.envand set DATABASE settings andSTRIPE_SECRET_KEY. -
Run migrations and start server:
python manage.py migrate
python manage.py runserver- API endpoints:
/api/products/— list products/api/products/<id>/— product detail/api/stripe/create-checkout/— (placeholder) create Stripe Checkout session
Next steps: implement cart, checkout flow, admin UX, tests, CI/CD, and Docker deployment.