bash
-
Open a terminal and navigate to the
clientdirectory:cd client npm install -
Start the client (if applicable):
npm start
-
Open a terminal and navigate to the
serverdirectory:cd server -
Create a virtual environment:
python -m venv env
-
Activate the virtual environment (Windows PowerShell):
.\env\Scripts\Activate.ps1
-
Install the required dependencies:
pip install -r requirements.txt
-
Run the server:
uvicorn main:app --host 127.0.0.1 --port 8000 --reload
The following database functions are supported:
- add: Insert a new record
- search: Retrieve records (with optional filtering)
- update: Modify an existing record (by ID)
- delete: Remove a record (by ID)