Skip to content
This repository has been archived by the owner on Oct 31, 2020. It is now read-only.
/ ctu-collaboration Public archive

🎓 Bachelor thesis | Vue.js app

Notifications You must be signed in to change notification settings

doomkit/ctu-collaboration

Repository files navigation

Ctu Collaboration Client

This application is available at ctu-collaboration.cz

Development

To run this project, you need:

  • Install all dependencies with yarn or npm i
  • Run yarn serve or npm run serve to start dev server

Production

This fronted is served by Node.js server, that should be located in the same directory with this project. Output directory for fronted build is configured in vue.config.js.

To build this project use yarn build or npm run build. Pay attention to enviroment variables (more about that in the following section).

Environment Variables

Vue.js documentation - Environment Variables

  • File .env is used for --mode development. Development mode is used for yarn serve or npm run serve by default.
  • File .env.production is used for --mode production. Production mode is used for yarn build or npm run build by default.