-
Notifications
You must be signed in to change notification settings - Fork 267
Getting Started
Guilherme Borges Bastos edited this page Jun 3, 2020
·
12 revisions
- 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
-
If you haven't installed Node.js in your machine then go to this link in order to install node.
-
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
- If you haven't installed NPM in your machine then go to this link in order to install NPM.
-
Fork this repository, by clicking the
Fork
button at the top-right on this page. -
Clone the forked repository from your GitHub account.
https://github.com/[replace-with-your-github-username]/live-resume.git
-
Go to the cloned directory (e.g.
cd live-resume
). -
Run
npm install
. -
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 theen
withpt
=>--configuration=pt
, the application language would be pt-BR.
- 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!
- Home
- Mobile Friendliness
- Getting Started
- Applying Customizations