Skip to content

Commit 8f92e87

Browse files
committed
remove comment
1 parent 9cb2312 commit 8f92e87

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

backend/backend/settings.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@
113113
)
114114
}
115115

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
118116

119117
# Password validation
120118
# https://docs.djangoproject.com/en/5.2/ref/settings/#auth-password-validators

backend/mydatabase

0 Bytes
Binary file not shown.

frontend/src/api.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import axios from "axios"
22
import { ACCESS_TOKEN } from "./constants"
33

4-
const apiUrl = "/choreo-apis/notes-app/backend/v1";
5-
64
const api = axios.create({
7-
baseURL: import.meta.env.VITE_API_URL ? import.meta.env.VITE_API_URL : apiUrl
5+
baseURL: import.meta.env.VITE_API_URL || ""
86
})
97

108
api.interceptors.request.use(

0 commit comments

Comments
 (0)