This is India ultimate's Membership and Payment Management Portal
The site is built using Django, Django Ninja and SolidJS. The code is licensed under the GNU AGPL v3.0 License.
You can report issues on GitHub, Zulip or WhatsApp.
To run migrations and load sample data:
python manage.py migrate
python manage.py loaddata server/fixtures/sample_data.json
Super User Dev Creds which gets created from sample_data:
email: developer@example.com | password: password
To run the webserver, run the Django local server:
python manage.py runserver
The frontend is built using SolidJS. To run the development server with hot-reloading, run the webpack dev server:
yarn run dev
Go to http://localhost:8000
to start development. The Django server sets the
CSRF token cookie, and then redirects to the Webpack dev server for a better
developer experience (Hot module reloading) while working on the frontend.