This is a Vue SPA managed with vue-cli-service.
It's the client for a web server/client application. The server can be found at https://github.com/508-dev/game-remix-guesser-backend.
Copy the example env to .env
cp .example.env .envThis will make environment variables such as the API url visible to vue-cli-service. Note that the outdated version we're using can only see environment variables that start with VUE_APP_.
Then, install the npm packages:
npm installHave the SPA run on your machine locally. Run like this, the server will update on any local file change.
npm run dev
npm run build
npm run test:unit
npm run test:e2e
npm run lint