- From d-commerce root in terminal
python -m venv venv
(windows)python3 -m venv venv
(mac)pip install -r requirements.txt
- Clone Repo:
git clone [email protected]:kenshima4/d-commerce.git
- In the same directory as settings.py create a .env file.
- Create the following secrets:
GMAIL_APP_PASSWORD=gmail-password-here
STRIPE_SECRET_KEY=stripe-secret-key-here
Note: The gmail app password and stripe secret key need to be created.
- Run Python server (in one terminal):
cd backend
python manage.py runserver
- Run Vue server (in another terminal):
cd frontend
npm run serve
- Open browser at: 127.0.0.1:8080 to use app