The aim of the project is to develop an application for managing sales. During development we used some frameworks that are listed below.
To install the project you must install mysql on your machine.
Enter the following commands in the terminal.
sudo apt update
sudo apt install mysql-server
For new installations, you will want to run the security script that is included. This changes some of the less secure default options for things like root logins and example users. Enter the command below.
sudo mysql_secure_installation
This will take you through a series of prompts where you can make some changes to the security options of your MySQL installation. The first prompt will ask you if you want to configure the Validate Password Plugin, which can be used to test the strength of your MySQL password. Regardless of your choice, the next prompt will be to set the password for the MySQL root user. Sign in and then confirm a secure password of your choice.
From there, you can press Y and then ENTER to accept the default answers for all subsequent questions. This will remove some anonymous users and the test database, disable remote login for root, and load all of these new rules so that MySQL immediately respects the changes you made.
To see if MYSQL is running, type the following command.
systemctl status mysql.service
If MySQL is not running, you can start it with the following command.
sudo systemctl start mysql
Now try to connect your root user to MySQL.
mysql -u root -p
In order to run the project, you must go into the project folder where the docker-compose file is and run the following command to start the docker. In the file of prometheus.yml you must put your ip of your machine.
Where is it - targets: ['0.0.0.0:8080'] replace the zeros with your ip address
Before running docker-compose you must stop the MYSQL service, as the port that was configured in the docker for MYSQL is 3000. If the MYSQL service is not stopped there will be a conflict and the docker will not be executed. Enter the following command:
sudo service mysql stop
sudo service mysql status
sudo docker-compose up -d
To enter data in the application you must access the swagger in your browser. Enter the following address:
localhost:8080/swagger-ui.html or http://127.0.0.1:8080/swagger-ui.html
If you want to collect application metrics with prometheus or grafana type the following into your browser:
For Prometheus type: 127.0.0.1:9090
For Grafana: 127.0.0.1:3000
git clone https://github.com/RamonBecker/AppSalesManagement.git
git clone https://github.com/RamonBecker/AppSalesManagement.git
or install github https://desktop.github.com/
- Java
- Docker
- Prometheus
- Grafana
- Spring boot
- The user will be able to perform a product CRUD
- The user will be able to perform a client CRUD
- The user will be able to perform a category CRUD
- The user will be able to perform a sales CRUD
By Ramon Becker 👋🏽 Get in touch!