Skip to content

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

Start Backend and Frontend

Starting the Backend

  1. Navigate to the backend folder:
    cd backend
  2. Create a virtual environment (if not already created):
    python -m venv venv
  3. Activate the virtual environment:
    • On macOS/Linux:
      source venv/bin/activate
    • On Windows:
      venv\Scripts\activate
  4. Install dependencies:
    pip install -r requirements.txt
  5. Apply migrations:
    python manage.py migrate
  6. Start the backend server:
    python manage.py runserver

Admin Panel for Events

To add or update events, create a superuser:

python manage.py createsuperuser

Then visit the admin panel at: http://localhost:8000/admin/, click on Events, and perform CRUD operations.

Starting the Frontend

  1. Navigate to the frontend folder:
    cd frontend
  2. Install dependencies:
    npm install
  3. Start the frontend development server:
    npm start

Now, the frontend will be accessible at http://localhost:3000.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages