Skip to content

Latest commit

 

History

History
56 lines (37 loc) · 1.02 KB

README.md

File metadata and controls

56 lines (37 loc) · 1.02 KB

Fast Api Project

Fast Api Project Installation and Usage Instructions

This document provides step-by-step instructions for installing the Django project, creating a virtual environment, installing dependencies, and running the project.

Requirements

The following programs must be installed on your computer:

  • pip (Python package manager)
  • Virtualenv (or other virtual environment manager)
  • Go to (to clone the project)

Setting Up the Project

1. Download the Project with Git

First of all, clone the project to your computer using Git:

git clone https://github.com/MetinQardasov11/FastApi-Project.git

2. Create a Virtual Environment

MacOS / Linux:

python3 -m venv env
source env/bin/activate

Windows:

py -m venv env
.\env\Scripts\activate

3. Installing the Necessary Packages

pip install -r requirements.txt

4. Running the Project

MacOS / Linux / Windows:

uvicorn file_name:app_name --reload