This is a FastAPI-based backend for the ClinicConnect application. It provides authentication functionality, including user registration and login using JWT tokens.
- Clone the Repository:
git clone https://github.com/tomehabb/clincconnect.git
cd clinicconnect
- Set Up a Virtual Environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install Dependencies:
pip install -r requirements.txt
- Run the Application:
uvicorn main:app --reload
- Once the application is running, you can access the interactive API documentation (Swagger UI) at:
http://127.0.0.1:8000/docs
Use this interface to explore and test the available APIs.