Skip to content
Guilherme Borges Bastos edited this page Jun 3, 2020 · 12 revisions

< Wiki Home page

This Wiki page will lead you through the installation until the project execution. In case of issues, feel free to enter in our community on Gitter.

Prerequisite

  1. It is required to have Node.js with version 12.18.0 or higher. To see what version of Node.js is installed on your machine type the following command in the terminal:
node -v
  1. If you haven't installed Node.js in your machine then go to this link in order to install node.

  2. It is required to have NPM with version 6.14.0 or higher. To see what version of NPM is installed on your machine type the following command in the terminal:

npm -v
  1. If you haven't installed NPM in your machine then go to this link in order to install NPM.

How to install and Execute locally

  1. Fork this repository, by clicking the Fork button at the top-right on this page. Learn how to fork GitHub projects

  2. Clone the forked repository from your GitHub account.

https://github.com/[replace-with-your-github-username]/live-resume.git
  1. Go to the cloned directory (e.g. cd live-resume).

  2. Run npm install.

  3. Inner the folder of the cloned project, start the application:

ng serve --host 0.0.0.0 --configuration=en

Note: the optional parameters:

  • --host 0.0.0.0 useful if you want to see how your application runs on a mobile or from some other laptop/computer/network.
  • --configuration=en in this example the application will be displayed in en-US, by replacing the enwith pt => --configuration=pt, the application language would be pt-BR.
  1. After that, the command will start a server instance and listen on port 4200. Open (http://localhost:4200/) in your browser. The Live Resume will be displayed.

Please, feel free to make improvements, or any sort of changes and send it back via pull request. Your contribution is always welcome!

Applying Customizations >