This is a simple Nuxt application that I built to showcase some software that I've built over the years.
This app is designed to be generated and deployed as a static website and is currently hosted on GitHub pages at broox.dev.
- Install nvm.
- Install dependencies.
nvm install --lts
npm install --global yarn
yarn install
Start the development server on http://localhost:3000
yarn run dev
or, to open the site in a browser while starting the server
yarn dev -o
This application uses GitHub actions and will automatically generate a static website that will be deployed when new code is pushed to the main
branch.
It can also be built locally for production and tested via:
yarn run generate