Skip to content

koii-network/builder247

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

247 Builder

Developing locally

Set up a virtual environment and activate it:

python3 -m venv .venv
source .venv/bin/activate

Install dependencies:

pip install -r requirements.txt

run tests:

python3 -m pytest tests/

Developing in Docker

Build the image:

docker build -t test-builder .

Run the container with a mounted volume:

docker run -it -v $(pwd):/app test-builder

This will give you access to your files within the container and run the container in interactive mode with shell access. You can then run tests inside the container using:

python -m pytest tests/

or

python3 -m pytest tests/

To exit the container's shell:

exit

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.6%
  • Dockerfile 0.4%