- 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.
You can create the artefact with help of a preconfigured docker image
- Only Build the Artefact
docker run --rm -v /path/to/liveResume:/opt/liveResume -e BUILD_ENV="liveResume" --name myresume --hostname myresume akhilrajmailbox/live-resume:1.0.1 build
# Optional (If you need to move the artifacts to docs folder)
rm -rf ./docs ; mkdir ./docs
cp -r ./dist/liveResume/en/* ./docs/- Build and Publish the Artefact (gh-pages)
Assuming that the gh-page is serving from teh current branch under folder "docs"
docker run --rm -v /path/to/liveResume:/opt/liveResume -e BUILD_ENV="liveResume" --name myresume --hostname myresume akhilrajmailbox/live-resume:1.0.1Angular Project to Github Pages
- Clone the forked repository from your GitHub account.
git clone https://github.com/[replace-with-your-github-username]/liveResume.git
-
Go to the cloned directory (e.g.
cd liveResume). -
Run
npm install. -
Inner the folder of the cloned project, start the application:
ng serve -o --host 0.0.0.0 --configuration en
Note: the optional parameters:
-oaliases for opening the default browser as soon the application is served.--host 0.0.0.0is useful if you want to see how your application runs on a mobile or from some other laptop/computer/network.--configuration=enin this example the application will be displayed in en-US, by replacing theenwithpt=>--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!
Feel free to add new features, language supports, fix bugs, or improve the docs. Any kind of help is appreciated! If you make any kind of improvements, please, send them back as a Pull Request. Let's keep making it better and up-to-date.
I cloned this repo from Guilherme's live-resume and customized with my data and ideas. Thanks Guilherme !.
This project uses several open source packages:
The theme is available as open source under the terms of the MIT License.
-
git tag v1.0.1
-
git tag -l
-
git push origin --tags