These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Python 3.11
-
Clone the repository:
git clone https://github.com/solo-driven/AIESTE_AZ.git
-
Navigate to the project directory:
cd AIESTE_AZ
-
Create a virtual environment:
python3.11 -m venv env
-
Activate the virtual environment:
- On Windows:
.\env\Scripts\activate
- On Unix or MacOS:
source env/bin/activate
- On Windows:
-
Install the requirements:
pip install -r requirements.txt
-
Navigate to the
api
directory:cd api
-
Run the application:
uvicorn posts.web.main:app
Now, you can visit http://localhost:8000/docs
in your browser to view and test the api.