-
Notifications
You must be signed in to change notification settings - Fork 267
Getting Started
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 and post your questions.
A video tutorial is also available watch it [Video is outdated, use as guideline, if needed].
- It is required to have Node.js with version 14.18.1 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.15 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;
-
TypeScript version 4.8.4 or later.
A video tutorial is also available watch it.
-
Fork this repository, by clicking the
Fork
button at the top-right on this page. -
Clone the forked repository from your GitHub account.
git clone https://github.com/[replace-with-your-github-username]/live-resume.git
-
Go to the cloned directory (e.g.
cd live-resume
). -
Run
npm install --force
. -
Inner the folder of the cloned project, start the application:
ng serve -o --host 0.0.0.0 --configuration en
P.S: In case of ng
command is not found, run the follow command:
npm install -g @angular/cli
Note: the optional parameters:
-
-o
aliases for opening the default browser as soon the application is served. -
--host 0.0.0.0
is 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