No description
  • HTML 88.4%
  • JavaScript 9.7%
  • SCSS 1.9%
Find a file
2020-01-23 15:41:08 -03:00
public Fix links and other itens 2020-01-23 15:41:08 -03:00
src Fix links and other itens 2020-01-23 15:41:08 -03:00
.gitignore Implement How this is built page 2020-01-04 03:23:10 -03:00
package.json Remove leaflet references 2020-01-08 15:06:48 -03:00
README.md Move images to minio 2020-01-08 14:04:43 -03:00
watch.js Fix broken images on portfolio, ignore .swp files on watch 2020-01-11 16:05:36 -03:00
yarn-error.log Implement build/watch scripts 2020-01-02 23:44:55 -03:00
yarn.lock Add error checking to avoid exceptions to break watch 2020-01-04 01:45:04 -03:00

RGOU HTML-Plain Portfolio/Resumè

Requirements

NodeJS (for development only).

Resources

Install and Use

git clone https://git.rgou.net/rafaelgou/rgou-portfolio-resume-html-plain.git
cd html-plain

You can open rgou-portfolio-resume-html-plain/public/index.html and see the full site. No need anything else to run.

But if you wan't to build your on version, go ahead and run:

npm install
npm run watch

Or if you prefer Yarn:

yarn install
yarn watch

You can customize all files under src/ and can open public/index.html on the browser to see the changes.

HTML, CSS and Javascript are compile in realtime after saving.

Other useful commands

(you can use yarn instead of npm run if you prefer Yarn)

  • npm run publish-fonts: Copy webfonts from FontAwesome into the public folder
  • npm run html-minify: Minify HTML using html-minify command line
  • npm run js-minify: Minify JS using uglify-js command line
  • npm run sass: Compile and minify SASS files into CSS files using node-sss command line
  • npm run sass:watch: Watch changes on SASS and run node-sss
  • npm run build: Build all the assets for production - shortcut for publish-fonts, html-minify, js-minify, sass
  • npm run watch: Watch file changes under src/ to compile/minify