Updated README, fixed config bug, added build to notarize.js

This commit is contained in:
Andrew Gundersen 2022-03-14 06:30:59 -05:00
commit 4936c76770
3 changed files with 9 additions and 2 deletions

View file

@ -5,6 +5,6 @@ const DOMAIN = "crimata.com";
const prod = !process.defaultApp;
module.exports = {
PLATFORM: prod ? `http://app.${DOMAIN}` : `http://localhost:8760`,
PLATFORM: prod ? `https://app.${DOMAIN}` : `http://localhost:8760`,
API: prod ? `https://${DOMAIN}/api` : `http://localhost:8761`
}