Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 713 Bytes

CONTRIBUTING.md

File metadata and controls

38 lines (24 loc) · 713 Bytes

Contributing Guideline

Getting Started

  1. Fork and clone repository then setup with development container.

  2. Migrate database.

    python manage.py migrate
  3. Create admin user.

    python manage.py createsuperuser
  4. Run development server at http://localhost:8000/ and email server at http://localhost:8025/.

    python manage.py runserver

Reset Development Server's Database

  1. Remove all data.

    rm -r backend/media
    rm backend/db.sqlite3
  2. Migrate database and restart server.

Additional Resources