To check, use python3 -v
If installed, proceed to step 2.
If not, look up the docs. lol.
(It's like npm/yarn except for python.)
Run this code in your CLI of choice:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
...and after, run this:
python get-pip.py
It should automatically upgrade you to pip3
python3 -m venv venv
Then activate it:
source venv/bin/activate
python3 -m pip3 install Django
pip3 install djangorestframework
Run this:
python3 manage.py migrate
This will init the SQLite Database.
python3 manage.py runserver
You should be able to login. Credentials are in the Discord dev chat.
Post a screenshot or code snippet of the entire error into the Slack or Discord channel and tag Cat.
- Create CRUD functionality
- Connect to AWS Lambda
- Connect to frontend (look up axios for React)
- Create dummy data sellers in DB
- Create test users via frontend