mechevarria / bill-manager

AngularJS, Springboot, Solr, MySQL docker system to manage monthly expenses/income

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bill-manager

Angular client and Springboot api application to manage monthly expenses/income with a MySQL backend and search provided by Solr

Installation Steps

  • Install docker-ce

  • Make sure the user that will run docker is in the docker group. In this example, the username is vmuser

sudo usermod vmuser -a -G docker

Install node.js

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -

sudo apt-get install -y nodejs

Setup MySQL docker

  • Test that mysql docker will work with
mysql/docker-mysql.sh
  • After making sure the container runs you can stop the container with
docker stop mysql

Optional: Backup data from MySQL

  • Run the export script
./mysql/db-backup.sh
  • billDb.sql.gz will be located in the directory above bill-manager

Optional: Restore data from MySQL Export

  • Make sure billDb.sql.gz is located in the directory above bill-manager

  • Run the restore script

./mysql/db-restore.sh

Install Solr docker Service

  • Configure the container core directory with
./solr/solr-configure.sh
  • Run the Solr container with
./solr/docker-solr.sh

Solr Configuration Details, FYI

  • The /opt/solr/server/solr/mycores/bills/conf/solrconfig.xml has the code added to the config element
<requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler">
  <lst name="defaults">
    <str name="config">data-config.xml</str>
  </lst>
</requestHandler>
  • The /opt/solr/server/solr/mycores/bills/conf/managed-schema has after this line
<field name="_text_" type="text_general" indexed="true" stored="false" multiValued="true" />
  • The following block added
<!-- ********** custom fields for bill-manager ********** -->
<field name="db_id" type="string" indexed="true" stored="true" />
<field name="item_date" type="pdate" indexed="true" stored="true" />
<field name="author" type="string" indexed="true" stored="true" />
<field name="description" type="text_general" indexed="true" stored="true" />
<field name="price" type="pfloat" indexed="true" stored="true" />
<field name="last_modified" type="pdate" indexed="true" stored="true" />
<field name="category" type="string" indexed="true" stored="true" />
 
<copyField source="author" dest="_text_" />
<copyField source="description" dest="_text_" />
<copyField source="category" dest="_text_" />
<!-- ********** end custom fields ********** -->

Deploy Springboot docker API

  • Inside the springboot-api directory, build a container with
./docker-build.sh
  • Verify the containers runs with
./docker-springboot.sh

Local Springboot development

  • Use the following script to run locally against a mysql docker container
./local-run.sh

Setup nginx docker service

  • Build client project
npm install
npx bower install
npx grunt build
  • Build the nginx container from the client build output in ./client/dist
client/docker-build.sh
  • Make sure the client runs with
client/docker-nginx.sh

AngularJS client development

  • Inside the client directory run
npx grunt serve

Run all the containers

  • After configuring and verifying the containers run, use the following scripts to run and stop all the containers
./docker-run-all.sh
./docker-stop-all.sh

About

AngularJS, Springboot, Solr, MySQL docker system to manage monthly expenses/income


Languages

Language:JavaScript 46.2%Language:HTML 34.7%Language:Java 16.0%Language:Shell 2.3%Language:CSS 0.5%Language:Dockerfile 0.2%