Skip to content

cschreep/demo_project

Repository files navigation

Getting started

Local env

  1. Configure the environment
cd demo_project
python3 -m venv .venv
source .venv/bin/activate

pip install -r requirements.txt
pip install -e .
  1. Run the webserver
flask run
  1. Access the service at localhost:5000/?query=hello

Docker

  1. Build the docker image
docker build -t demo-project -f Dockerfile .
  1. Run a docker container
docker run --rm -p 5000:5000 demo-project
  1. Access the service at localhost:5000/?query=hello

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published