A rebuild of planetplum.net with a chat, bandpages, user profiles and functionality, etc.
pip install virtualenv
virtualenv -p python3.11 venv
'venv' is the name of your virtual environment folder. You can change that if you want
windows: venv\Scripts\activate
make sure that requirements.txt is in your current directory this install the required python packages into your virtual environment folder: pip install -r requirements.txt
'venv' is already in .gitignore so don't worry about that
python manage.py makemigrations
python manage.py migrate
6. Create your own SuperUser to access /admin page: http://127.0.0.1:8000/admin
python manage.py createsuperuser
Now you're good to go
python manage.py runserver
check requirements.txt is in your current directory this will allow other people to see and install the new package: pip freeze > requirements.txt
install new packages pip install -r requirements.txt
wipe the whole thing (command from django_extensions package) python manage.py reset_db
check out the djangogirls tutorial or any w3schools thing.