This application is available at ctu-collaboration.cz
To run this project, you need:
- Install all dependencies with
yarn
ornpm i
- Run
yarn serve
ornpm run serve
to start dev server
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).
Vue.js documentation - Environment Variables
- File
.env
is used for--mode development
. Development mode is used foryarn serve
ornpm run serve
by default. - File
.env.production
is used for--mode production
. Production mode is used foryarn build
ornpm run build
by default.