Django Project
The aim is to list all Django Girls Workshops held in Mozambique
- Django - Python Web Framework
- Python (3.6, 3.7, 3.8, 3.9, 3.10, older)
- Django (2.2, 3.0, 3.1, 3.2, 4.0, older)
We highly recommend and only officially support the latest patch release of each Python and Django series.
- Install using pip...
- pip install -r requirements.txt
To contribute to this project you have to fork it and clone it.
git clone https://github.com/ctivir/dg_moz.git
Clone project
After cloning it, in the project directory, run:
-
cd dg_moz
Get project folder -
python3 -m venv env
create virtual env -
source env/bin/activate
activate virtual env -
./python manage.py createsuperuser
create superuser to have access to django admin -
./manage.py makemigrations
create new migrations based on the changes you have made to your models. -
./manage.py migrate
appy all migrations. -
./manage.py runserver
to run the app in the development mode. Open http://localhost:8000 to view it in the browser.The page will reload if you make edits.