The new website for the BFrisBee2's. Written with django-cms.
First make sure you have python 3.10 installed and poetry
This tutorial is made for linux like systems, when using windows commands might be a bit different. But I think when installing the software correctly it should be not to different.
For more information on poetry look at the docs
This is a bit hasty but should give the mayor steps
- Clone the repo
- Open a terminal in the repo
- run
poetry install
to install all the python dependecies - run
poetry shell
to enter the virtual env - go to the website folder
- run first start of the server according to django docs
a. Run
./manage.py migrate
to create the db and apply migrations b. Run./manage.py makesuperuser
to add a user to the server - Run
./manage.py runserver
to start the server - Open the website in you browser and do the first setup
- Make sure to give yourself a memeber in the admin panel under users
- Setup you editor such that it works nice :)
Hope this helps a bit