https://github.com/djangocon/2025.djangocon.eu
DjangoCon Europe 2025
https://github.com/djangocon/2025.djangocon.eu
Last synced: 5 months ago
JSON representation
DjangoCon Europe 2025
- Host: GitHub
- URL: https://github.com/djangocon/2025.djangocon.eu
- Owner: djangocon
- License: mit
- Created: 2024-06-07T14:12:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-20T09:42:01.000Z (about 1 year ago)
- Last Synced: 2025-05-20T10:44:03.613Z (about 1 year ago)
- Language: CSS
- Size: 62.1 MB
- Stars: 5
- Watchers: 5
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README

🌍 [2025.djangocon.eu](https://2025.djangocon.eu/) \
📍 Dublin, Ireland \
📅 April 23-27
[](https://github.com/pydanny/cookiecutter-django/)
[](https://github.com/ambv/black)
[]()
## Local Development
### Using venv
_optional_ - Create a virtual environment
```bash
python -m venv env
```
install requirements:
```bash
> pip install -r requirements/[ local | production ].txt
```
### Using Docker
```bash
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`:
```python
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](CODE_OF_CONDUCT.md).
## Getting Started
Get started contributing by reading our [Contributing](CONTRIBUTING.md) 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
- [Python](https://docs.python.org/3/) - Programming language
- [Django](https://docs.djangoproject.com/) - Web framework
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.