Skip to content

hotswaplabs/python-task-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This template allows you to quickly create a Docker container to integrate your task with Tasker. Follow the quickstart in the Tasker docs to get started.

Local testing

To start the task locally, run the following commands:

$ python3 -m venv venv

$ . ./venv/bin/activate

$ pip3 install -r requirements.txt

$ uvicorn task:app --reload

To call your task, run curl localhost:8000 in another terminal.

ctrl+c will terminate the task.

Testing the Docker image

We use Docker to package your code. To mimic how your task will run in production, run the following commands:

$ docker build -t python-template .

$ docker run -p 8000:8000 -e PORT=8000 python-template

To call your task, run curl localhost:8000 in another terminal.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published