playcademy 0.14.28 → 0.14.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,12 +27,12 @@ export function getAuth(c: Context) {
27
27
  const secret = getAuthSecret(c)
28
28
 
29
29
  // CUSTOMIZABLE: Configure trusted origins for CORS
30
- // These origins are allowed to make cross-origin requests to your project's auth endpoints.
31
- // Add your deployed project URLs here when you deploy to staging or production.
30
+ // These origins are allowed to make cross-origin requests to your app's auth endpoints.
31
+ // Add your deployed app URLs here when you deploy to staging or production.
32
32
  const trustedOrigins = [
33
33
  'http://localhost:5173', // Local development
34
- // 'https://{{GAME_SLUG}}-staging.playcademy.gg', // Staging deployment
35
- // 'https://{{GAME_SLUG}}.playcademy.gg', // Production deployment
34
+ // 'https://{{APP_SLUG}}-staging.playcademy.gg', // Staging deployment
35
+ // 'https://{{APP_SLUG}}.playcademy.gg', // Production deployment
36
36
  ]
37
37
 
38
38
  return betterAuth({
@@ -1,4 +1,4 @@
1
1
  /** @type {import('playcademy/types').PlaycademyConfig} */
2
2
  export default {
3
- name: '{{GAME_NAME}}',{{GAME_DESCRIPTION}}{{GAME_EMOJI}}{{INTEGRATIONS_CONFIG}}
3
+ name: '{{APP_NAME}}',{{APP_DESCRIPTION}}{{APP_EMOJI}}{{INTEGRATIONS_CONFIG}}
4
4
  }
@@ -1,3 +1,3 @@
1
1
  {
2
- "name": "{{GAME_NAME}}"{{GAME_DESCRIPTION}}{{GAME_EMOJI}}{{INTEGRATIONS_CONFIG}}
2
+ "name": "{{APP_NAME}}"{{APP_DESCRIPTION}}{{APP_EMOJI}}{{INTEGRATIONS_CONFIG}}
3
3
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "{{GAME_NAME}}-backend",
2
+ "name": "{{APP_NAME}}-backend",
3
3
  "version": "0.0.0",
4
4
  "type": "module",
5
5
  "private": true,