star-track

Star-Track

👋 hello

Star-Track is a user-friendly utility for tracking GitHub repository statistics.

💻 install

⚙️ execute

python -m startrack.app

🐳 Docker

To test the Docker solution locally, follow these steps:

  1. Build the Docker Image

    docker build -t startrack:latest .
    
  2. Run the Docker Container

    docker run --rm \
      -e GITHUB_TOKEN=your_github_token \
      -e INPUT_ORGANIZATIONS=org1,org2 \
      -e INPUT_REPOSITORIES=user1/repo1,user2/repo2 \
      -v $(pwd)/data:/app/data:z \
      startrack:latest
    

Explanation

📝 Notes

By following these steps, you can test your Docker solution locally and ensure that your GitHub Action will work as expected. If you encounter any issues or need further assistance, feel free to ask!