2026-01-28 16:51:43 +05:30
2025-12-01 05:38:08 +05:30
2025-12-20 01:42:25 +05:30
2025-11-27 11:53:46 +05:30
2025-12-20 03:55:40 +05:30
2025-11-28 03:11:38 +05:30
2025-11-27 11:53:46 +05:30
2025-11-27 11:53:46 +05:30
2025-12-19 19:35:38 +05:30
2025-11-27 11:53:46 +05:30
2025-11-27 11:53:46 +05:30
2025-11-27 11:53:46 +05:30
2025-11-27 11:53:46 +05:30

Eventify - Django

This repository contains a production-oriented Django project skeleton for the Eventify application.

Features

  • Custom User model
  • EventType (categories), Event, EventImages models
  • CRUD for EventType, Event, and Users
  • Bootstrap-based templates and navigation
  • Settings prepared to use environment variables for production

Quick start (development)

  1. Create a virtualenv and activate it
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
  1. Run migrations and create superuser
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver

Production notes

  • Set DJANGO_SECRET_KEY, DJANGO_DEBUG, and DJANGO_ALLOWED_HOSTS environment variables
  • Collect static files with python manage.py collectstatic
  • Serve via uWSGI/gunicorn + nginx or any WSGI server
Description
No description provided
Readme 1.5 MiB
Languages
Python 92.1%
HTML 7.8%