This is the backend project for Gem Hub.
- Clone the repository
git clone https://github.com/NeoArkByte/gem-hub-backend
cd gem-hub-backend- Install uv package manager (if not installed)
pip install uv- Create and activate virtual environment
uv venv .venv
# Windows
.venv\Scripts\activate
# macOS/Linux
source .venv/bin/activate- Install dependencies
uv sync- Run migrations
python manage.py makemigrations
python manage.py migrate- Start the development server
python manage.py runserverVisit http://127.0.0.1:8000/ to confirm the server is running.