A generic, Dockerized automation repository for running different tools and utility scripts.
It is fully environment-driven, meaning behavior is configured via .env without modifying code.
This project includes a Dockerfile and a docker-compose.yml to run the application in a container.
-
Build and start in the background
docker-compose up -d --build
-
Stop and remove containers
docker compose down
Contributions are welcome! To set up your development environment:
- Clone the repository and enter the folder:
git clone https://github.com/Bug-Not-Detected/scripts.git cd scripts - Create a virtual environment and install Python dependencies:
python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt - Run the script locally:
python scripts/upload_datasets.py
See the LICENSE.md file for details.