Skip to content

ArkV1/web-cli-wrapper

Repository files navigation

Build and run the container:

docker-compose up --build

Python Development Setup

# Create virtual environment
python -m venv .venv

# Activate virtual environment
# On Windows:
.venv\Scripts\activate
# On Unix or MacOS:
source .venv/bin/activate

# Install dependencies
pip install -r requirements.txt

# Create requirements.txt (when adding new packages)
pip freeze > requirements.txt

Python Development Setup

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
!!! IMPORTANT !!!
Only single gunicorn worker is supported at the moment.

Run Gunicorn

gunicorn -c gunicorn.conf.py app:app

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages