Skip to content

Commit

Permalink
re-add beta to hardcoded groups to fix add default char
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewjosephtaylor committed Oct 2, 2024
1 parent 7c1bfd1 commit 65b6218
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 13 deletions.
Binary file modified bun.lockb
Binary file not shown.
12 changes: 6 additions & 6 deletions pizza.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<title>Pizza Order</title>

<!-- LOCAL -->
<script
<!-- <script
data-pap-id="access-point-1723587253991-ff3eef0f-6a7f-415f-943a-a5fc81d0d3b4"
type="module"
crossorigin
src="src/index.ts"
data-homebase-url="http://localhost:8787"
></script>
></script> -->

<!-- STAGING -->
<!-- <script
Expand All @@ -24,18 +24,18 @@
></script> -->

<!-- PROD -->
<!-- <script
<script
data-pap-id="access-point-1723591970176-b702a779-664d-47e1-9282-59ac12cbad73"
type="module"
crossorigin
src="https://ai-workforce.intelligage.net/assets/main-BTieZgDY.js"
src="https://ai-workforce.intelligage.net/assets/index-BT6EJaqZ.js"
data-homebase-url="https://ai-worker.intelligage.workers.dev"
></script> -->
></script>

<link
rel="stylesheet"
crossorigin
href="https://ai-thing.pages.dev/assets/main-Ikf_a8jN.css"
href="https://ai-thing.pages.dev/assets/index-lIFVgnUM.css "
/>

<style>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/user/HARD_GROUPS.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const HARD_GROUPS = ["app-admin", "app-sales"];
export const HARD_GROUPS = ["app-admin", "app-sales", "beta"];
19 changes: 13 additions & 6 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,23 @@ export default defineConfig({
__APP_VERSION__: JSON.stringify(version),

// Local dev settings
// __HOME_BASE__: JSON.stringify("http://localhost:8787"),
__HOME_BASE__: JSON.stringify("http://localhost:8787"),
// __PAP_ID__: JSON.stringify(
// "access-point-1725394696984-a760a179-851e-48d0-b276-85e7a426239c"
// ),
__PAP_ID__: undefined,
__APP_FRONT__: JSON.stringify("power-user"),

// Production settings
__HOME_BASE__: JSON.stringify("https://ai-worker.intelligage.workers.dev"),
__PAP_ID__: JSON.stringify(
"access-point-1725571260862-23455f95-1253-4dfe-96e3-952ac6af647c"
),
__APP_FRONT__: JSON.stringify("pizza-demo"),
// __HOME_BASE__: JSON.stringify("https://ai-worker.intelligage.workers.dev"),
// __PAP_ID__: JSON.stringify(
// "access-point-1725571260862-23455f95-1253-4dfe-96e3-952ac6af647c"
// ),
// __APP_FRONT__: JSON.stringify("pizza-demo"),

// AI-Workfroce Production settings
// __HOME_BASE__: JSON.stringify("https://ai-worker.intelligage.workers.dev"),
// __PAP_ID__: undefined,
// __APP_FRONT__: JSON.stringify("power-user"),
},
});

0 comments on commit 65b6218

Please sign in to comment.