Skip to content

Evgeny011/tobacco_back

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tobacco incentory application 📈

Created by Evgeny011 - back & shalimovSens - front

Technologies I used in the project:

  • Sqlalchemy
  • FastApi
  • SQLite
  • Pydantic
  • Docker
  • Uvicorn
  • Python

Frontend stack: Vue & TypeScript & TailwindCSS

Launching the application

Uvicorn

Install virtual environment
python3 -m venv .venv

Activate the virtual environment
. .venv/bin/activate

Install dependencies into virtual environment
pip install -r requirements.txt

Start uvicorn
uvicorn src.fastapi_tabak:app --reload

Docker

docker build -t fastapi .

docker run -d --name mycontainer -p 8000:8000 fastapi