Skip to content
This repository was archived by the owner on Mar 27, 2023. It is now read-only.

Bump django from 3.0.6 to 3.0.7 in /backend/requirements #6

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed broken ws link, env vars were adding double quotes around ws://…
…localhost
  • Loading branch information
briancaffey committed Sep 3, 2020
commit 4e3da4a5ba5273d8792bd965afe2cf01693df451
4 changes: 2 additions & 2 deletions quasar/quasar.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@ module.exports = function (ctx) {
env: ctx.dev
? {
API_URL: JSON.stringify(`http://${process.env.FULL_DOMAIN_NAME}`),
WS_URL: JSON.stringify(`ws://${process.env.FULL_DOMAIN_NAME}`),
WS_URL: `ws://${process.env.FULL_DOMAIN_NAME}`,
GITHUB_KEY: JSON.stringify(process.env.GITHUB_KEY),
GOOGLE_OAUTH2_KEY: JSON.stringify(process.env.GOOGLE_OAUTH2_KEY),
FACEBOOK_KEY: JSON.stringify(process.env.FACEBOOK_KEY),
}
: {
API_URL: JSON.stringify(`https://${process.env.FULL_DOMAIN_NAME}`),
WS_URL: JSON.stringify(`$wss://${process.env.FULL_DOMAIN_NAME}`),
WS_URL: `wss://${process.env.FULL_DOMAIN_NAME}`,
GITHUB_KEY: JSON.stringify(process.env.GITHUB_KEY),
GOOGLE_OAUTH2_KEY: JSON.stringify(process.env.GOOGLE_OAUTH2_KEY),
FACEBOOK_KEY: JSON.stringify(process.env.FACEBOOK_KEY),
Expand Down