add .env file and move api urls to .env

This commit is contained in:
MarcZierle 2022-10-31 11:54:18 +01:00
parent b4ac02c0bf
commit 0fb0eb8516
4 changed files with 5 additions and 2 deletions

2
.env.dist Normal file
View File

@ -0,0 +1,2 @@
VITE_API_URL=
VITE_WEBSOCKET_URL=

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
dist/
node_modules/
**/.env

View File

@ -48,7 +48,7 @@ export default defineComponent({
store.dispatch('loadAuth')
console.log("Starting connection to WebSocket Server")
this.connection = new WebSocket("wss://zierle-training.riezel.com/ws/notifications/")
this.connection = new WebSocket(import.meta.env.VITE_WEBSOCKET_URL)
this.connection.onmessage = function(event) {
console.log(event);

View File

@ -4,7 +4,7 @@ import createAuthRefreshInterceptor from 'axios-auth-refresh';
import store from '../store'
const apiClient = axios.create({
baseURL: 'https://zierle-training.riezel.com/api/v1',
baseURL: import.meta.env.VITE_API_URL,
withCredentials: false,
timeout: 10000,
headers: {