💳 Online shop built with React and TypeScript as the frontend, and Django Rest Framework as the backend.
- is the folder containing the completed project. To use PayPal, you need the
clientId
, which is located on line 271 of the fileShopZone/ShopZone/frontend/src/pages/CartPage.tsx
. You can obtain theclientId
from your PayPal developer account.
git clone https://github.com/agustfricke/ShopZone.git
cd ShopZone/ShopZone
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
mkdir dist
mkdir dist/static
python3 manage.py createsuperuser
python3 manage.py runserver
cd frontend
npm i
npm run dev