- Name: Sebastian Back
- Email: sebastian.back@abo.fi
-
- Project folder structure
-
- Backend using Django (JSON for shop page, HTML for landing page, SQLite DB)
-
- Frontend in React
-
- Automatic DB population
-
- Browse items
-
- Create account
-
- Login
-
- Add item
-
- Add to cart
-
- Additional requirements implemented?
- Create a virtual environment (optional but recommended)
cd backendpip install -r requirements.txtpython manage.py migratepython manage.py runserver
- Open another terminal
cd frontendnpm installnpm start
Open http://localhost:3000 (for React) and http://127.0.0.1:8000 (for Django).