Skip to content

erosselli/2025.djangocon.eu

 
 

Repository files navigation

🌍 2025.djangocon.eu
📍 Dublin, Ireland
📅 April 23-27

built-with code-style License: MIT

Local Development

Using venv

optional - Create a virtual environment

python -m venv env

install requirements:

> pip install -r requirements/[ local | production ].txt

Using Docker

python setup_env.py
docker compose build
docker compose up

To access the running Django container, use docker compose exec django /bin/bash. But please note that currently, manage.py migrate doesn't work, you need to use the provided sqlite3.db.

Database seed (sqlite3.db)

After setting up the Django project, point your local settings to the pre-populated SQLite database by appending the following to config/settings/local.py:

import os

# Database
# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
DATABASES = {
    "default": {
        "ENGINE": "django.db.backends.sqlite3",
        "NAME": os.path.join(BASE_DIR, "db.sqlite3"),
    }
}

Code of Conduct

As a contributor, you can help us keep the Django community open and inclusive. Please read and follow our Code of Conduct.

Getting Started

Get started contributing by reading our Contributing guidelines.

How to Contribute to DjangoConEu website

To contribute to this project, please follow these steps:

  1. Fork the Repo
  2. Clone the Repo to your local machine
  3. Follow "Local Development"
  4. make changes and submit a PR( we will review)

Built With

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

About

DjangoCon Europe 2025

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 43.0%
  • HTML 30.1%
  • Python 17.2%
  • SCSS 4.8%
  • JavaScript 3.6%
  • Dockerfile 1.1%
  • Shell 0.2%