Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 1.02 KB

README.md

File metadata and controls

39 lines (23 loc) · 1.02 KB

Code Challenge: Python/Django Developer @ SHERPANY

Home task project to build an "events" web application.

Author: @davert0

Task description

Build an "events" web application where users can log in, create events and sign up for an event and withdraw from an event.

Any user can list events:

  • Sorted so that upcoming events are first
  • List view shows title, date and amount of participants
  • List view shows the owner of the event (as the part of the email before the "@")
  • Assume there will be many thousands of events, users and participants per event
  • Any logged in user can create events
  • Logged in user can edit own events
  • Login with email and password
  • Registration with email and password

Database included for demonstration purposes

Admin profile login: email = admin@localhost
password = admin

Run the next commands to run docker and start the project:

docker-compose build
docker-compose up