Skip to content

pythontanzania/djangogirlstz

Repository files navigation

djangogirlstz

Django Girls Tanzania website

Django Girls Tanzania website uses a batteries-included Django starter project. For a production-ready version see the book Django for Professionals.


Table of Contents


📖 Installation

PyCon website can be installed via Pip, Pipenv, or Docker depending upon your setup. To start, clone the repo to your local computer and change into the proper directory.

$ git clone https://github.com/pythontanzania/djangogirlstz.git djangogirlstz
$ cd djangogirlstz

Pip

$ python3 -m venv djangogirlstz
$ source djangogirlstz/bin/activate
(djangogirlstz) $ pip install -r requirements.txt
(djangogirlstz) $ python manage.py migrate
(djangogirlstz) $ python manage.py createsuperuser
(djangogirlstz) $ python manage.py runserver
# Load the site at http://127.0.0.1:8000

Pipenv

$ pipenv install
$ pipenv shell
(pycontz) $ python manage.py migrate
(pycontz) $ python manage.py createsuperuser
(pycontz) $ python manage.py runserver
# Load the site at http://127.0.0.1:8000

Setup

# Run Migrations
(djangogirlstz) $ python manage.py migrate

# Create a Superuser
(djangogirlstz) $ python manage.py createsuperuser

# Confirm everything is working:
(djangogirlstz) $ python manage.py runserver

# Load the site at http://127.0.0.1:8000

🤝 Contributing

Contributions, issues and feature requests are welcome! See CONTRIBUTING.md.

⭐️ Support

Give a ⭐️ if this project helped you!

License

The MIT License