.
├── index.html
├── LICENSE
├── netlify.toml
├── package.json
├── package-lock.json
├── postcss.config.js
├── public
│ ├── favicon.ico
│ └── robots.txt
├── README.md
├── src
│ ├── App.vue
│ ├── assets
│ ├── components
│ ├── layouts
│ ├── main.js
│ ├── router
│ ├── staticData.js
│ └── views
├── tailwind.config.js
└── vite.config.js
7 directories, 14 files
Dependency | |
---|---|
vue | Vue3 |
three | Implementation of skill could |
vue-router | Handles navigation |
debounce | To debounce expensive function calls |
git clone git@github.com:venkivijay/pf.git
cd pf
npm install
Run npm run dev
to spin up a development server. Navigate to port 3000 on either localhost or on your network IP. The app will automatically reload if you change any of the source files.
Run npm run lint-yell
to get lint errors. Notice that this will not fix it by default. To fix lint errors, run npm run lint
.
Run npm run pretty-yell
to get files that are not prettified. To prettify, run npm run pretty
.
Run npm run build
to build for production. Build files will be placed in dist
directory. Run npm run serve
to serve the production build.
Currently, deployment is handled by Netlify. Pushing code to dev branch
will automatically trigger a deploy.