├── README.md ├── app.py ├── docker-compose.yml ├── dockerfile ├── examples.txt ├── requirements.txt ├── sentiment_service ├── app.py ├── dockerfile └── requirements.txt ├── tarot_cards.json ├── tests ├── Dockerfile.test ├── docker-compose.yml ├── requirements.txt ├── run-tests.txt └── test_app.py └── twitter_scraper ├── app.py ├── dockerfile └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/app.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/dockerfile -------------------------------------------------------------------------------- /examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/examples.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | json 3 | random -------------------------------------------------------------------------------- /sentiment_service/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/sentiment_service/app.py -------------------------------------------------------------------------------- /sentiment_service/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/sentiment_service/dockerfile -------------------------------------------------------------------------------- /sentiment_service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/sentiment_service/requirements.txt -------------------------------------------------------------------------------- /tarot_cards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/tarot_cards.json -------------------------------------------------------------------------------- /tests/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/tests/Dockerfile.test -------------------------------------------------------------------------------- /tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/tests/docker-compose.yml -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | json 3 | random 4 | pytest -------------------------------------------------------------------------------- /tests/run-tests.txt: -------------------------------------------------------------------------------- 1 | docker-compose up --build -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /twitter_scraper/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/twitter_scraper/app.py -------------------------------------------------------------------------------- /twitter_scraper/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/twitter_scraper/dockerfile -------------------------------------------------------------------------------- /twitter_scraper/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercury131/taro-cd/HEAD/twitter_scraper/requirements.txt --------------------------------------------------------------------------------