Skip to content

jjocram/jjocram.github.io

Repository files navigation

Marco Ferrati | Portfolio

Hi everyone, this is my portfolio website. It is developed with Vue.js and Bulma. Check it out:

Info about the build phase

  1. When a new modification is added I create a commit git add . && git commit -m "Commit message"
  2. Then I push on the two remotes git push all. To do that I modified .git/config adding a new remote with two url:
[remote "all"]
    url = git@gitlab.com:jjocram/jjocram.gitlab.io.git
    url = git@github.com:jjocram/jjocram.github.io.git
  1. Based on which CI is build (GitLab or GitHub) differentiated by an environment variable, Vue.js uses different paths for the public directory:
function getPublicPath() {
  switch(process.env.NODE_ENV) {
    case 'gh-production':
      return '/jjocram.github.io/';
    case 'glab-production':
      return '/';
    default:
      return '/';
  }
}

About

My portfolio website, developed with Vue and Bulma

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published