ignacio83 / athena-dependency-analyzer

Athena is the god of wisdom, she can analyze maven dependencies of many projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Codacy Badge Coverage Status License Apache2

Athena Dependency Analyzer

Developing

The java application is available at app.

Inside of java app the code is available at src/main/java and the frontend files are in src/main/frontend.

Running dependencies

docker run -d --name athena_rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.7.7-management-alpine
docker run -d --name athena_mongo -p 27017:27017 mongo:3.6.9 --smallfiles

Running the backend

Run Application class from your IDE informing the following spring boot parameters:

  • application.github.organization: Name of organization in Github.
  • application.github.token: Token for access the Github API.
  • application.maven.home: Location of your maven installation, this is optional if not provided the application will use a configured for your MAVEN_HOME environment variable
  • application.maven.localRepositoryDirectory: Local repository for maven cache libraries, this is optional if not provided the application will use a configured for your MAVEN_LOCAL_REPOSITORY environment variable

Running the frontend

Go to src/main/frontend and run npm start. (Run npm install before that if it's the first time)

Now we should work with http://localhost:9090 (this is where we'll see our live changes reflected) instead of http://localhost:8080.

Run everything from Maven

mvn generate-resources spring-boot:run -Drun.arguments="--application.github.organization=my_organization --application.github.token=my_token"

The Maven goal generate-resources will execute the frontend-maven-plugin to install Node and Npm the first time, run npm install to download all the libraries that are not present already and tell webpack to generate our bundle.js. It's the equivalent of running npm run build or npm start on a terminal.

Packaging

mvn package

Docker

Building a new docker image

docker build -t netshoes/athena-dependency-analyzer .

Running Standalone

docker run -d -p 8080:8080 \
-e MONGO_URI=my_mongodb_uri \
-e RABBITMQ_ADDRESSES=my_rabbit_address \
-e RABBITMQ_HOST=my_rabbit_vhost \
-e RABBITMQ_USER=my_rabbit_user \
-e RABBITMQ_PASS=my_rabbit_pass  \
-e GITHUB_TOKEN=my_token \
-e GITHUB_HOST='api.github.com' \
-e GITHUB_ORGANIZATION=my_organization \
-e ADMIN_USERNAME=admin \
-e ADMIN_PASSWORD='{noop}admin' \
-t netshoes/athena-dependency-analyzer:latest

Running with Compose

export GITHUB_HOST=api.github.com
export GITHUB_ORGANIZATION=my_organization
export GITHUB_TOKEN=my_token
export ADMIN_USERNAME=admin
export ADMIN_PASSWORD={noop}admin

docker-compose up 

Running a service on docker swarm

docker service create \
                    --name ${PROJECT} \ ## Name off de service on Swarm
                    --publish xxxx:8080 \   ## Port bind
                    --replicas ${appEnv.maxInstances} \ ## Number off containers
                    --env MONGO_URI="mongodb://pass:user@host_mongo.yourdomain:27017/database" \    ## URI off mongodb
                    --env RABBITMQ_ADDRESSES="host_rabbitmq.yourdomain:5672" \ ## Rabbitmq host and port
                    --env RABBITMQ_HOST="vhost" \   ## Vhost
                    --env RABBITMQ_USER="user" \    ## Rabbitmq User
                    --env RABBITMQ_PASS="pass" \   ## Rabbitmq pass
                    --env GITHUB_HOST="api.github.com" \
                    --env GITHUB_ORGANIZATION="Your_OrganizationGit" \
                    --env GITHUB_TOKEN="Token_yourOrganizationGit" \
                    --env ADMIN_USERNAME=user \
                    --env ADMIN_PASSWORD={noop}pass \
                    --detach=false \
                    --mount type=bind,source=/usr/share/zoneinfo/America/Sao_Paulo,destination=/etc/timezone,readonly \ ## Config your timezone
                    netshoes/athena-dependency-analyzer:latest

About

Athena is the god of wisdom, she can analyze maven dependencies of many projects

License:Apache License 2.0


Languages

Language:Java 76.3%Language:JavaScript 22.6%Language:Shell 0.5%Language:CSS 0.3%Language:Dockerfile 0.2%Language:HTML 0.0%