-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Firebase Auth emulator #9
Changes from 1 commit
3182fd4
9af1fb3
b3e4a02
6ab6c4e
ef922a8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1 +1,6 @@ | ||||||
GOOGLE_SERVICE_ACCOUNT_KEY='<...Firebaseプロジェクトのサービスアカウントキーの中身を直接記入>' | ||||||
PUBLIC_FIREBASE_PROJECT_ID=fukada-delete-me | ||||||
PUBLIC_FIREBASE_API_KEY=AIzaSyCqkxdTAOegNHszt2gHJp8Jkss2v9IZ71c | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 重大なセキュリティリスク:Firebase API キーを削除してください。 実際の API キーをバージョン管理システムにコミットすることは、重大なセキュリティリスクです。この API キーは直ちに無効化し、新しいキーを生成する必要があります。 以下のように変更してください: -PUBLIC_FIREBASE_API_KEY=AIzaSyCqkxdTAOegNHszt2gHJp8Jkss2v9IZ71c
+PUBLIC_FIREBASE_API_KEY=your-api-key また、Firebase コンソールで現在の API キーを無効化し、新しいキーを生成することを強くお勧めします。 📝 Committable suggestion
Suggested change
🧰 Tools🪛 Gitleaks
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FirebaseのAPIキーはクライアントコードに公開される情報です。ここで強く秘匿しても意味がありません。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ciscorn ご指摘ありがとうございます。FirebaseのAPIキーがクライアントに公開される情報であること、理解しました。今後のレビューで考慮いたします。 (・_・)ゞ 🧠 Learnings used
|
||||||
PUBLIC_FIREBASE_AUTH_EMULATOR_HOST=127.0.0.1:9099 | ||||||
GOOGLE_SERVICE_ACCOUNT_KEY= | ||||||
PUBLIC_STRIPE_KEY=pk_test_51Pid8OLtNIgQdVMELz3Zbod4CjWiZdG5NBpZVUfKEGr2Vc7MYEbEwSHkMpJAfKVGSQLxDXk66YVma4qi0uMkwLrV00R5lQ4ZwP | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Stripe の公開キーをプレースホルダーに置き換えてください。 テストキーであっても、実際のキーを例示ファイルに含めることは避けるべきです。意図しない使用を防ぐため、プレースホルダーを使用することをお勧めします。 以下のように変更してください: -PUBLIC_STRIPE_KEY=pk_test_51Pid8OLtNIgQdVMELz3Zbod4CjWiZdG5NBpZVUfKEGr2Vc7MYEbEwSHkMpJAfKVGSQLxDXk66YVma4qi0uMkwLrV00R5lQ4ZwP
+PUBLIC_STRIPE_KEY=your_stripe_public_key 📝 Committable suggestion
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. あとで、このリポジトリ自体をリセットする予定です。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ciscorn、了解しました。リポジトリをリセットされる予定であれば、そのままで問題ありません。 (;_;) |
||||||
SECRET_STRIPE_KEY= |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,9 @@ node_modules | |
.DS_Store | ||
Thumbs.db | ||
|
||
# Log | ||
*.log | ||
|
||
# Env | ||
.env | ||
.env.* | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"emulators": { | ||
"auth": { | ||
"port": 9099 | ||
}, | ||
"ui": { | ||
"enabled": true | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Firebase プロジェクト ID をプレースホルダーに置き換えてください。
実際のプロジェクト ID を使用すると、意図しない使用につながる可能性があります。また、"delete-me" という名前は例示用としては適切ではありません。
以下のように変更することをお勧めします:
📝 Committable suggestion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
あとで、このリポジトリ自体をリセットする予定です。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ciscorn、承知しました。それではそのまま進めますね。
(。•́︿•̀。)
✏️ Learnings added