Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 1.27 KB

README.md

File metadata and controls

58 lines (39 loc) · 1.27 KB

dzd-mouseclinic-client

Recommended IDE Setup

VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).

Customize configuration

See Vite Configuration Reference.

Set Api Server URL

Use following env variables to set env vars

  • API_SERVER_BASE_PATH The path where the api is available-. e.g. https://restapi.connect.dzd-ev.de/mouseclinic/. mind the trailing slash
  • API_SERVER_BASE_URL The base path (protocoll+domain) where the api is available. e.g. https://restapi.connect.dzd-ev.de/. mind the trailing slash

Project Setup

cd app/
yarn install

Compile and Hot-Reload for Development

cd app/
yarn run dev

Compile and Minify for Production

cd app/
yarn run build

Run Project

Via prebuild docker image

docker run -p 80:80 registry-gl.connect.dzd-ev.de:443/dzdapps/dzd-werk:latest

Via local build image

git clone ssh://git@git.connect.dzd-ev.de:22022/dzdapps/dzd-werk.git
docker build . -t myImageName
docker run -p 80:80 myImageName