MatheusGeiger / employee_project

Parent repository to join employee project repositories (fullstack challenge)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parent repository to join employee project repositories

API

https://github.com/MatheusGeiger/node-employee-api

CLIENT API

https://github.com/MatheusGeiger/angular-cli

USAGE

SUBMODULES

This project use git submodules. Read more https://git-scm.com/book/en/v2/Git-Tools-Submodules

After clone, inicialize the submodules:

  • git submodule init

Submodule Init

Git will not download the contents of the submodules when cloning this project. To make the clone of all the commands you must execute:

  • git submodule update

Submodule Update

before running project use git submodule foreach git pull origin master to get the last version of code provided in master branch.

RUNNING PROJECT

Using docker you can up the project with command docker-compose up --build

This command will up and create three containers:

  • API: the employees and users api
  • ANGULAR_CLI: the client view with graphs and table from employees
  • MONGO: the database to persist values from employees and user

URLS

After run up the project command we can access then using urls above:

About

Parent repository to join employee project repositories (fullstack challenge)