-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea58d77
commit 16f8ec3
Showing
10 changed files
with
46 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/// <reference types="vite/client" /> | ||
|
||
interface ImportMetaEnv { | ||
/** REQUIRED ENVIRONMENT VARIABLES */ | ||
// URL of the API which serves data | ||
VITE_API_URL: string; | ||
|
||
// Human-readable name of the Discord group running this event (e.g. 'GTMK') | ||
VITE_DISCORD_NAME: string; | ||
|
||
// Invite URL for users to join your discord server | ||
VITE_DISCORD_INVITE_URL: string; | ||
|
||
// Human-readable name of the game jam being run | ||
VITE_JAM_NAME: string; | ||
|
||
// URL of the game jame for people to join/view | ||
VITE_JAM_URL: string; | ||
|
||
/** OPTIONAL ENVIRONMENT VARIABLES */ | ||
// String of when the event starts and website automatically becomes active | ||
VITE_JAM_START: string; | ||
|
||
// String of when the event ends and website automatically becomes inactive | ||
VITE_JAM_END: string; | ||
|
||
// Sentry.io DSN URL for analytics tracking | ||
VITE_SENTRY_DSN: string; | ||
} | ||
|
||
interface importMeta { | ||
readonly env: ImportMetaEnv | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters