Eventyay is an open source event management platform by FOSSASIA. It provides event ticketing, registration, call for participation, speaker and session management, scheduling, online event video, attendee check-in, badge printing, organiser administration, APIs, and plugin based extensions.
Eventyay has been in development since 2014. Parts of the system historically originated from separate components for tickets, talks, and video. The current repository contains the unified Eventyay codebase.
- Project status and branch model
- Main features
- Technology stack
- Quick start with Docker
- Python based local development
- Frontend development
- Configuration overview
- Plugins and extensions
- Separate Eventyay components
- Translation workflow
- Common development commands
- API and service endpoints
- Repository layout
- Architecture rules for contributors
- Troubleshooting
- Deployment
- Documentation
- Contributing
- Legal and licensing
Eventyay is actively developed.
The repository uses the following branch model:
mainis the production ready branch.devis the testing and active development branch.
Pull requests should normally target dev. Changes are tested and stabilised there before they are moved to main for production ready releases.
Eventyay includes:
- Event ticketing and registration
- Event related item sales, such as shirts or add ons
- Organiser and event administration
- Call for Participation workflows
- Speaker, submission, review, and schedule management
- Public event pages
- Schedule display and schedule editor frontends
- Online event and video related workflows
- Separate check-in station support through the Eventyay Checkin component
- PDF ticket and badge related workflows
- REST API endpoints
- OAuth and social authentication support
- Multi domain and multi event handling
- Plugin discovery and plugin URL registration
- Standard plugins and external plugin extensions for payments, CRM, exhibitions, social media, team shifts, interpretation, and spatial event integrations
- Email, notifications, scheduled tasks, reports, statistics, and check-in lists
- Health check and metrics endpoints
- Internationalisation and translation infrastructure with Hosted Weblate based browser translation workflow
Backend:
- Python 3.12
- Django 5.2
- Django REST Framework
- PostgreSQL
- Redis
- Celery
- Django Channels
- Daphne / ASGI
- Pydantic settings
- uv for Python dependency management
Frontend:
- Vue 3
- Vite
- JavaScript and TypeScript depending on the frontend module
- SCSS / Stylus
- Django Compressor for selected legacy and Django integrated assets
Docker is the recommended way to start quickly for local development and first testing. For production or self-hosted server deployment, see the Deployment section below and DEPLOYMENT.md.
The local Docker stack starts the Django web service, Celery worker, Celery beat, Redis, and PostgreSQL. It also mounts ./plugins for local plugin development.
Requirements:
- Docker
- Docker Compose plugin
- Git
Steps:
git clone https://github.com/fossasia/eventyay.git
cd eventyay
git switch dev
cp deployment/env.dev.sample .env.dev
docker compose up -d --buildCreate an admin user:
docker exec -ti eventyay-next-web python manage.py create_admin_userOpen the local site:
http://localhost:8000
View logs:
docker compose logs -fStop the development stack:
docker compose downThe directory app/eventyay is mounted into the Docker container, so live editing of backend code is supported.
Use this setup when you want to run services directly on your machine.
Requirements:
- Python 3.12
- uv
- PostgreSQL
- Redis
- Node.js and npm
- Debian or Ubuntu packages listed in
deb-packages.txtor equivalent packages for your distribution
Clone the repository:
git clone https://github.com/fossasia/eventyay.git
cd eventyay
git switch devInstall external dependencies on Debian or Ubuntu:
xargs -a deb-packages.txt sudo apt installFor Nushell:
open deb-packages.txt | lines | sudo apt install ...$inIf you are using another Linux distribution, install the corresponding packages from deb-packages.txt.
Install uv.
Install and run Redis according to your distribution.
Create a PostgreSQL database. The default local database name is:
eventyay-db
On Linux, the simplest local development setup is PostgreSQL peer mode. Create a PostgreSQL user with the same name as your Linux user:
sudo -u postgres createuser -s "$USER"Then create a database owned by your user:
createdb eventyay-dbYou can then access the database without specifying a password, host, or port:
psql eventyay-dbIf you cannot use PostgreSQL peer mode, create app/eventyay.local.toml with database connection values:
postgres_user = "your_db_user"
postgres_password = "your_db_password"
postgres_host = "localhost"
postgres_port = 5432Enter the app directory:
cd appInstall Python dependencies:
uv sync --all-extras --all-groupsActivate the virtual environment:
. .venv/bin/activateRun migrations:
python manage.py migrateCreate an admin user:
python manage.py create_admin_userBuild frontend and static assets:
make npminstall
python manage.py collectstatic --noinput
python manage.py compress --forceRun the development server:
python manage.py runserverOpen:
http://localhost:8000
Run Celery locally when working on background tasks:
celery -A eventyay worker -l infoIf you want to test the site from an Android emulator, use:
http://10.0.2.2:8000/
This is Android's alias for the host machine's localhost.
If you get permission errors for eventyay/static/CACHE, make sure that the directory and all files below it are owned by your user.
The repository contains several frontend applications under app/eventyay/webapp/:
app/eventyay/webapp/
├── schedule/ Schedule display web component
├── schedule-editor/ Schedule editor frontend
└── video/ Online event video frontend
The root app Makefile installs and builds these frontend applications through npm and places compiled assets into the Django app data directory.
Check-in uses the separate eventyay-checkin plugin and is not built by the Makefile npminstall target.
By default, Docker serves prebuilt frontend assets. To enable hot module replacement for frontend development, set this in .env.dev:
EVY_NPM_DEV=1When EVY_NPM_DEV=1 in .env.dev, the Docker image build skips make npminstall, and Vite dev servers start automatically inside the container, install npm dependencies as needed, and serve the webapps with HMR.
schedule-editorruns on port8080.videoruns on port8880.scheduleruns on port8082.eventyay-checkinruns on port8085when the plugin checkout is mounted atplugins/eventyay-checkin.
You do not normally need to visit these ports directly. The frontend works alongside http://localhost:8000 with hot module replacement.
The container must be recreated, not only restarted, for the environment change to take effect:
docker compose up -d --build webThe default is:
EVY_NPM_DEV=0With EVY_NPM_DEV=0, Django serves prebuilt assets, so run make npminstall after frontend changes. Before submitting frontend changes, always verify that the production asset build still works with the default value:
docker exec -ti eventyay-next-web make npminstall
docker exec -ti eventyay-next-web python manage.py collectstatic --noinputThe Eventyay configuration is based on TOML files, environment variables, dotenv files, and secret files. To see possible configuration keys and default values, check the BaseSettings class in app/eventyay/config/settings.py.
The configuration is divided into three running environments:
development: Uses default values fromeventyay.development.toml.production: Uses default values fromeventyay.production.toml.testing: Uses default values fromeventyay.testing.toml.
The values in these files override values defined in BaseSettings.
The running environment is selected via the EVY_RUNNING_ENVIRONMENT environment variable. It is pre-set in manage.py, wsgi.py, and asgi.py.
For example, to run a command in the production environment:
EVY_RUNNING_ENVIRONMENT=production ./manage.py commandConfiguration sources are loaded with the following precedence:
- Secret files in
.secrets/ - Environment variables with the
EVY_prefix .envin the current working directoryeventyay.local.toml- Environment specific TOML files such as
eventyay.development.toml,eventyay.production.toml, oreventyay.testing.toml
Create a file named eventyay.local.toml in the same folder as the manage.py file.
Add only the values you want to override. For example, to override the debug value, add:
debug = trueFor database connection values, a local override can look like this:
postgres_user = "your_db_user"
postgres_password = "your_db_password"
postgres_host = "localhost"
postgres_port = 5432For complex values such as lists, prefer TOML files over environment variables.
You can also override values via environment variables. Environment variable names are the uppercase versions of the setting keys, prefixed by EVY_.
For example, to override the debug value:
export EVY_DEBUG=trueA dotenv file, .env, is also supported. Values from .env are overridden by environment variables.
Sensitive data such as passwords and API keys should be provided via files in the .secrets directory, one file per key. The file name follows the same pattern as environment variable names with the EVY_ prefix. The file content is the value.
For example, to provide a value for the secret_key setting, create this file:
.secrets/EVY_SECRET_KEY
If you deploy the app via Docker containers, you can provide secret data through Docker secrets.
In development, Nominatim geocoding is used automatically when no OpenCage or MapQuest key is configured. Production deployments should configure a geocoding provider or explicitly enable public Nominatim geocoding in global settings.
By default, emails are printed to the terminal logs through the console backend.
To test email related features with real delivery, configure a mail server such as SendGrid, Gmail SMTP, or another SMTP provider.
For Gmail SMTP, use:
Host: smtp.gmail.com
Port: 587
TLS: enabled
If 2FA is enabled on the Google account, you may need to use an App Password.
Eventyay comes with several plugins that are part of the standard setup. These built-in plugins provide common functionality for authentication, reports, badges, check-in workflows, scheduled tasks, statistics, and ticket outputs.
Built-in and standard plugin areas include:
- Authentication and social auth
- Bank transfer
- Badges
- Sendmail
- Statistics
- Reports
- Check-in lists
- Manual payment
- Return URLs
- Scheduled tasks
- PDF ticket output
Eventyay also supports external plugin extensions. These plugins can be installed to add integrations or event specific functionality.
Available plugin extensions include:
- eventyay-exhibition: Exhibition component
- eventyay-interpretation: Integration with interpretation services such as Voxbento
- eventyay-hubspot: HubSpot integration
- eventyay-loungemesh: Loungemesh integration
- eventyay-socialmedia: Social media sharing and publishing integration
- eventyay-teamshifts: Team shifts and volunteer shift management plugin
Available payment plugins are:
- eventyay-bitpay: BitPay crypto payment integration
- eventyay-paypal: PayPal payment integration
- eventyay-stripe: Stripe payment integration
To create a new Eventyay plugin, use the eventyay plugin cookiecutter template.
Eventyay discovers compatible plugins through installed Django apps and Python entry points. The platform can register plugin URL patterns automatically when plugin metadata and URL modules are available.
If you are developing plugins, create a directory named plugins in the root of this repository. This directory is gitignored and can contain local plugin checkouts.
Example:
.
└── eventyay/
└── plugins/
├── eventyay-exhibitor/
└── eventyay-loungemesh/
When using the Docker development setup, the startup script scans ./plugins/ and installs detected plugins in editable mode. Installation status is cached in /tmp/eventyay-plugin-stamps/ to speed up container boot times.
Eventyay also provides separate components that can be used together with the main platform.
Eventyay Checkin is a separate check-in component for kiosk stations. It enables organisers to check in attendees at dedicated check-in stations during an event.
Eventyay Interpretation is a separate component for live interpretation. It enables multi-language audio streaming for sessions in an event.
The Eventyay platform can be translated through Hosted Weblate.
Contributors can use the Weblate workflow to add or improve translations directly in the browser. This means translation contributors do not need to check out the repository, edit translation files manually, or work inside the codebase.
Developers who maintain translation files in the repository can still use the local translation commands listed below.
Run from app/ unless stated otherwise.
Install dependencies:
uv sync --all-extras --all-groupsActivate virtual environment:
. .venv/bin/activateApply database migrations:
python manage.py migrateRun development server:
python manage.py runserverRun Celery worker:
celery -A eventyay worker -l infoBuild development static files:
make staticfilesBuild production assets:
make productionRun tests:
pytest tests/Compile translations:
make localecompileRegenerate translation files:
make localegenBuild JavaScript translation catalogues and static files:
make staticfilesImportant local endpoints include:
/ Public start page
/orga/ Organiser area for talks and speakers configuration and setup
/control/ Ticketing control and organiser management area
/admin/ Platform admin interface
/api/v1/ REST API
/healthcheck/ Health check
/metrics/ Metrics endpoint
/accounts/ Account and authentication routes
/<organizer>/ Organizer public routes
/<organizer>/<event>/ Event public routes
/<organizer>/<event>/cfp/ Call for Participation routes
/<organizer>/<event>/video/ Online event video frontend
Important paths:
.
├── app/
│ ├── eventyay/ Main Eventyay application code
│ ├── tests/ Backend and integration tests
│ ├── tools/ App related helper tools
│ ├── manage.py Django management entry point
│ ├── pyproject.toml Python project metadata and dependencies
│ └── Makefile Asset, translation, and test helper commands
├── deployment/ Docker, deployment, environment, and nginx related files
├── doc/ Project documentation sources
├── tools/ Repository level tools
├── docker-compose.yml Local Docker development stack
├── CONTRIBUTING.md Contribution workflow
├── DEPLOYMENT.md Production and self-hosted deployment guide
├── CLA.md Contributor License Agreement information
├── LICENSE Apache License 2.0
└── NOTICE Attribution and upstream notices
Main backend modules are under app/eventyay/. Important areas include:
app/eventyay/
├── agenda/ Public schedule and agenda functionality
├── api/ API endpoints and OAuth models
├── base/ Core user, auth, middleware, and shared base code
├── cfp/ Call for Participation functionality
├── common/ Shared platform utilities
├── config/ Django settings, ASGI, WSGI, and URL configuration
├── control/ Ticketing control and organiser management area
├── event/ Event domain logic
├── features/ Feature modules such as analytics, live, importers, social, integrations
├── mail/ Email handling
├── multidomain/ Multi domain routing and middleware
├── orga/ Talks and speakers organiser area
├── person/ User and person related functionality
├── plugins/ Built in plugins
├── presale/ Ticketing and public event registration
├── schedule/ Schedule related functionality
├── storage/ File and media storage handling
├── submission/ Submission handling
└── webapp/ Vue/Vite frontend applications
Important rules for changes:
- Product code belongs under
app/eventyay/. - Tests belong under
app/tests/. - Documentation belongs under
doc/. - Event owned ORM queries must be scoped correctly with
django_scopes.scope(event=event). - Keep imports at the top of files unless a local import is required to avoid a circular import.
- Preserve specific exception types instead of replacing them with generic
Exception. - Do not introduce new jQuery usage or inline scripts.
- Prefer external ES modules for JavaScript.
- Use
select_relatedandprefetch_relatedwhere appropriate to avoid N+1 queries.
In some environments, for example Docker with WSL, pages may load without CSS or only some pages may load correctly.
Browser console errors may look like:
Refused to apply style because its MIME type is 'text/html'
This usually means a static asset was requested but an HTML response, such as a 404 page, was returned instead.
Rebuild static assets:
docker exec -ti eventyay-next-redis redis-cli FLUSHDB
docker exec -ti eventyay-next-web rm -rf /usr/src/app/eventyay/static.dist/CACHE/css/*
docker exec -ti eventyay-next-web make npminstall
docker exec -ti eventyay-next-web python manage.py collectstatic --noinput
docker exec -ti eventyay-next-web python manage.py compress --force
docker restart eventyay-next-webThen hard refresh the browser with Ctrl + Shift + R.
The database in the development Docker setup is stored in the eventyay-next_postgres_data_dev Docker volume. If you see errors concerning login or other database related behaviour, you can completely reset the database.
You will lose all local configuration, organisers, events, users, tickets, and related database content.
You must stop the stack first so no container is using the volume. Otherwise, docker volume rm will fail. docker compose down stops and removes the containers but keeps named volumes by default.
docker compose down
docker volume rm eventyay-next_postgres_data_devRedis data in the development Docker setup is stored in the eventyay-next_rd volume. This corresponds to the rd volume in docker-compose.yml.
If you see connection, cache, broker, or background task related errors, you can reset Redis the same way: stop the stack, then remove the volume.
You will lose data held in Redis, such as cache or broker state.
docker compose down
docker volume rm eventyay-next_rdTo wipe both PostgreSQL and Redis data in one go, you can run docker compose down -v instead of removing volumes individually. This removes all named volumes declared for this Compose project, including eventyay-next_postgres_data_dev and eventyay-next_rd.
docker compose down -vBring the development stack back up in detached mode with a rebuild:
docker compose up -d --buildThe Docker quick start in this README is intended for local development and first testing. For production or self-hosted server deployments, use the dedicated deployment guide:
The deployment guide covers server setup, Docker, Docker Compose, nginx, certbot, PostgreSQL data storage, static file handling, deployment specific environment configuration, backups, and maintenance related setup.
Operators should review and adapt the deployment instructions for their own infrastructure, backup strategy, monitoring, TLS setup, mail delivery, payment providers, and security requirements.
Full Eventyay documentation is available at:
Useful entry points:
The documentation website should be used for the full user guide, platform administration documentation, developer documentation, API documentation, and reference material.
Pull requests are checked through GitHub Actions. The workflow set includes tests, style checks, documentation builds, Docker image builds, PR deployment workflows, and selected component-specific checks.
Before opening a pull request, run the relevant local checks for the files you changed. At minimum, run the test or build command related to the affected area.
We welcome contributions.
Basic workflow:
- Fork the repository.
- Create a feature branch.
- Make focused changes.
- Add or update tests when behaviour changes.
- Run tests and relevant build commands locally.
- Open a pull request against the
devbranch.
Pull request expectations:
- Link the PR to a GitHub issue.
- Use closing keywords such as
Fixes #123in the PR description. - Keep PRs small enough to review in less than a day where possible.
- Add screenshots or short videos for UI changes.
- Open draft PRs early for large or long running work.
- Respond to review comments and keep the branch up to date.
- Do not repeatedly tag reviewers.
See CONTRIBUTING.md for the full contribution guidelines.
This repository includes structured guidance for AI assisted development.
AI tools should consult:
agents.md.github/instructions/.agents/skills/
These files define repository specific coding, architecture, documentation, and pull request expectations.
Potential backend improvements include:
- Apply more Python type annotations.
- Add MyPy, ty, or another type checker.
- Improve IDE autocomplete and early bug detection through typing.
- Continue moving selected templating workflows toward Jinja where useful.
- Use djlint or another formatter to clean up template code.
Potential frontend improvements include:
- Remove remaining jQuery code.
- Convert older frontend behaviour to Vue or AlpineJS.
- Continue evaluating Single Page Application architecture where it makes sense.
- Use TypeScript more consistently where it improves maintainability.
- Consider HTMX and AlpineJS where Django rendered HTML remains the preferred approach.
Eventyay is free and open source software.
Professional support is available to customers of the hosted Eventyay service or Eventyay enterprise offerings.
For commercial support, hosting services, custom development, deployment support, integrations, or financial support of the project, visit eventyay.com.
Eventyay is published under the Apache License 2.0. See LICENSE for the complete license text.
See NOTICE for attribution and upstream project notices.
Contributions are accepted under the Apache License 2.0. See CONTRIBUTING.md and CLA.md for details.
This project is maintained by FOSSASIA.