pyconbalkan
Website for PyCon Balkan
Contributing
PyCon Balkan website is an open source project and welcomes contributions.
To get started follow the steps above.
Custom design for PyCon Years
As this custom loader MR introduced if you want to make a custom template changes for a conference year, please use template inheritence by adding {year}_template_name.html it will be loaded in favor of that year, and your changes will be visible.
Get up and running
- Clone this repo
- Create a virtual environment:
cd pyconbalkan
python -m venv .venv
- Activate the virtual environment:
source .venv/bin/activate
- Install the requirements:
pip install -r requirements.txt
- Create a file named
.env
Inside add:
SECRET_KEY={create_and_add_your_own_SECRET_KEY_here_with_no_spaces}
DEBUG=True
NOTE:
For more information on how you can generate a secret key visit here or you can generate a key online at here.
- Run migrations:
python manage.py migrate
- Run collect static:
python manage.py collectstatic
- Get the server up and running:
python manage.py runserver
You did it! If you have any problems doing this let us know by submitting an issue.
Public Trello Board
To contribute to the project, please visit our newest trello board here
Deprecated
Old deprecated public board can be found here.