Web-application on Java EE for making bets on sport events.
make start_environment
docker exec -it MYSQL_CONTAINER_ID /bin/bash
mysql -p
and useroot
as passwordCREATE DATABASE totalizator_db_schema;
- not needed if database is createdCREATE USER 'totalizator_user'@'%' IDENTIFIED BY 'totalizator_pass';
grant all on *.* to 'totalizator_user'@'%' IDENTIFIED BY 'totalizator_pass';
make start_environment
make compile
- unnecessary if you already built the applicationmake run