mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-15 12:06:57 +08:00
9432602727
* impr: add selfhosting using docker only * add recaptcha config and docs * add documentation on the backend-configuration.json file, remove ---redacted--- from example config --------- Co-authored-by: Jack <jack@monkeytype.com>
13 lines
597 B
TypeScript
13 lines
597 B
TypeScript
// To find your config, go to https://console.firebase.google.com/ and select your project
|
|
// Go to (top left) Settings > Project Settings > General
|
|
// scroll down to Your apps > Web Apps (if it doesnt exist, create one) > SDK setup and configuration > select npm
|
|
// your config should be visible there
|
|
|
|
export const firebaseConfig = {
|
|
apiKey: "###FIREBASE_APIKEY###",
|
|
authDomain: "###FIREBASE_AUTHDOMAIN###",
|
|
projectId: "###FIREBASE_PROJECTID###",
|
|
storageBucket: "###FIREBASE_STORAGEBUCKET###",
|
|
messagingSenderId: "###FIREBASE_MESSAGINGSENDERID###",
|
|
appId: "###FIREBASE_APPID###",
|
|
};
|