Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1 KB

File metadata and controls

45 lines (33 loc) · 1 KB

Scripts

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.


Getting Started

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

Contributing

Contributions are welcome! To set up your development environment:

  1. Clone the repository and enter the folder:
    git clone https://github.com/Bug-Not-Detected/scripts.git
    cd scripts
  2. Create a virtual environment and install Python dependencies:
    python3 -m venv .venv
    source .venv/bin/activate
    pip install -r requirements.txt
  3. Run the script locally:
    python scripts/upload_datasets.py

License

See the LICENSE.md file for details.