Skip to content

VectorBCO/RestAPI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RestAPI

Service for experiments with REST API written in Python (backend_app)

Requirements installation

pip install -r backend_app/requirements.txt

Running the application from source

Debug mode:

uvicorn backend_app.main:app --reload

Runnning as a service (not waiting in the console):

uvicorn backend_app.main:app &

Tests execution

pytest -v

Running the application from dockerfile

cd backend_app
docker build -t backend_app .
docker run -p 8000:80  backend_app
cd frontend_app
docker build -t frontend_app .
docker run -p 3000:5173  frontend_app

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 35.6%
  • JavaScript 25.9%
  • Python 19.1%
  • CSS 8.9%
  • Dockerfile 7.7%
  • HTML 2.8%