- 
Fork the
pendo-vuetify-apprepository - 
Open Terminal
 - 
Create a bare clone of of the repository
 
$ git clone --bare [email protected]:<your-user-name>/pendo-vuetify-app.git
- 
Create a new repository
 - 
Mirror-push to the new repository.
 
$ cd pendo-vuetify-app.git$ git push --mirror [email protected]:<your-user-name>/<your-new-repository>.git
- Remove the temporary local repository you created earlier.
 
$ cd ../$ rm -rf pendo-vuetify-app.git
- Clone your new repository
 
- 
In the
public/index.htmlfile add your apps snippet inside the script tags - 
To add or change user data that will be used to identify the user is located in the
src/user-data/user-data.json - 
In the Drawer.vue component
 
teamEnvUrlAndSubLinkcomputed property add yourbaseUrlandsubIdteamEnvUrlAndSubcomputed property add yourteamEnvandsubName
- In the Footer.vue component
 
teamEnvUrlAndSubLinkcomputed property add yourbaseUrlandsubIdteamEnvUrlAndSubcomputed property add yourteamEnvandsubName
- Run 
npm installoryarn installif you use Yarn - Run 
npm run devoryarn serveto start a local development server 
- Run 
npm run lint --fix 
- In the vue.config.js update
 
  publicPath: process.env.NODE_ENV === 'production'
    ? '/<your-repository-name-here>/'
    : '/'
- In the deploy.sh
 
#!/usr/bin/env sh
# abort on errors
set -e
# build
npm run build
# navigate into the build output directory
cd dist
git init
git add -A
git commit -m 'deploy'
git push -f [email protected]:<your-github-username>/<your-github-repository>.git master:gh-pages
cd -
- In terminal you will need to run 
bash deploy.sh 
- Your github page will be 
https://<your-user-name>.github.io/<your-repository-name>/