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 .env
This 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 install
Have the SPA run on your machine locally. Run like this, the server will update on any local file change.
npm run serve
npm run build
npm run test:unit
npm run test:e2e
npm run lint