- Memory Game
- Guess Game
- Currency Roulette Game
- A Flask app that serves and validates scores.
- Automates testing and deployment.
.
├── .gitignore # Git ignore file
├── Dockerfile # Docker configuration
├── Jenkinsfile # Jenkins pipeline configuration
├── README.md # Project documentation
├── app.py # Main Flask application
├── currency_roulette_game.py # Currency Roulette Game
├── docker-compose.yml # Docker Compose configuration
├── guess_game.py # Guess Game
├── main.py # Entry point for the games
├── main_score.py # Flask score service entry point
├── memory_game.py # Memory Game
├── requirements.txt # Python dependencies
├── score.py # Score-related logic
├── utils.py # Utility functions
├── tests/ # End-to-end tests
│ └── e2e.py # End-to-end test script
└── templates/ # HTML templates
└── score.html # Score html page template
└── error.html # Error html page template