Public
Like
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in miliseconds.
This is the Django backend for the Jobrapido application. It provides API endpoints for user authentication, profile management, and other features.
api/
- Main Django app containing models, views, and API endpointsjobrapido/
- Django project settingstemplates/
- Django templates for non-admin users
-
Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Run migrations:
python manage.py migrate
-
Create a superuser:
python manage.py createsuperuser
-
Run the development server:
python manage.py runserver
/api/register/
- User registration/api/login/
- User login/api/send-verification-code/
- Send email verification code/api/profile/
- Get or update user profile/api/forgot-password/
- Request password reset