We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cb2312 commit 8f92e87Copy full SHA for 8f92e87
backend/backend/settings.py
@@ -113,8 +113,6 @@
113
)
114
}
115
116
-# The GitHub Actions workflow will use the same DB_URL environment variable
117
-# which will be set to: postgres://postgres:postgres@localhost:5432/github_actions
118
119
# Password validation
120
# https://docs.djangoproject.com/en/5.2/ref/settings/#auth-password-validators
backend/mydatabase
0 Bytes
frontend/src/api.js
@@ -1,10 +1,8 @@
1
import axios from "axios"
2
import { ACCESS_TOKEN } from "./constants"
3
4
-const apiUrl = "/choreo-apis/notes-app/backend/v1";
5
-
6
const api = axios.create({
7
- baseURL: import.meta.env.VITE_API_URL ? import.meta.env.VITE_API_URL : apiUrl
+ baseURL: import.meta.env.VITE_API_URL || ""
8
})
9
10
api.interceptors.request.use(
0 commit comments