Skip to content

Commit 88cd483

Browse files
Initial commit
fbshipit-source-id: 70694ae63560292d611e6ecfd93709ac72df08c4
0 parents  commit 88cd483

31 files changed

Lines changed: 9642 additions & 0 deletions

.env.example

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Facebook App ID — create at https://developers.facebook.com/apps/
2+
FB_APP_ID=your_facebook_app_id
3+
4+
# Google Client ID — create at https://console.cloud.google.com/apis/credentials
5+
GOOGLE_CLIENT_ID=your_google_client_id
6+
7+
# Session secret — any random string
8+
SESSION_SECRET=change-me-to-a-random-string
9+
10+
# Port (optional, defaults to 3000)
11+
PORT=3000
12+
13+
# Dev login bypass — set to "true" to show a dev login button that skips FedCM auth
14+
DEV_LOGIN=

.github/workflows/main.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
13+
- name: Install Heroku CLI # <- IMPORTANT!!! Make sure the cli is installed before using the action
14+
run: |
15+
curl https://cli-assets.heroku.com/install.sh | sh
16+
- uses: akhileshns/heroku-deploy@1b080913896a5d6d44a18e9e208f8eb1fee9b0f7 # v3.15.15
17+
with:
18+
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
19+
heroku_app_name: "fedcm" #Must be unique in Heroku
20+
heroku_email: ${{secrets.HEROKU_EMAIL}}

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
node_modules/
2+
.env
3+
certs/
4+
5+
# OS / editor cruft
6+
.DS_Store
7+
.vscode/
8+
.idea/
9+
*.swp
10+
11+
# Local tooling
12+
.claude/
13+
14+
# Test / coverage output
15+
coverage/
16+
*.log

CODE_OF_CONDUCT.md

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to make participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, sex characteristics, gender identity and expression,
9+
level of experience, education, socio-economic status, nationality, personal
10+
appearance, race, religion, or sexual identity and orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies within all project spaces, and it also applies when
49+
an individual is representing the project or its community in public spaces.
50+
Examples of representing a project or community include using an official
51+
project e-mail address, posting via an official social media account, or acting
52+
as an appointed representative at an online or offline event. Representation of
53+
a project may be further defined and clarified by project maintainers.
54+
55+
This Code of Conduct also applies outside the project spaces when there is a
56+
reasonable belief that an individual's behavior may have a negative impact on
57+
the project or its community.
58+
59+
## Enforcement
60+
61+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62+
reported by contacting the project team at <opensource-conduct@meta.com>. All
63+
complaints will be reviewed and investigated and will result in a response that
64+
is deemed necessary and appropriate to the circumstances. The project team is
65+
obligated to maintain confidentiality with regard to the reporter of an incident.
66+
Further details of specific enforcement policies may be posted separately.
67+
68+
Project maintainers who do not follow or enforce the Code of Conduct in good
69+
faith may face temporary or permanent repercussions as determined by other
70+
members of the project's leadership.
71+
72+
## Attribution
73+
74+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
75+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
76+
77+
[homepage]: https://www.contributor-covenant.org
78+
79+
For answers to common questions about this code of conduct, see
80+
https://www.contributor-covenant.org/faq

CONTRIBUTING.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Contributing to FedCM Example App
2+
3+
We want to make contributing to this project as easy and transparent as
4+
possible.
5+
6+
## Our Development Process
7+
8+
This project is developed in Meta's internal monorepo and changes are synced
9+
one-way out to GitHub. Accepted pull requests are applied internally first and
10+
then surface here on the next sync.
11+
12+
## Pull Requests
13+
14+
We actively welcome your pull requests.
15+
16+
1. Fork the repo and create your branch from `main`.
17+
2. If you've added code that should be tested, add tests.
18+
3. If you've changed APIs, update the documentation.
19+
4. Ensure the test suite passes.
20+
5. Make sure your code lints.
21+
6. If you haven't already, complete the Contributor License Agreement ("CLA").
22+
23+
## Contributor License Agreement ("CLA")
24+
25+
In order to accept your pull request, we need you to submit a CLA. You only need
26+
to do this once to work on any of Meta's open source projects.
27+
28+
Complete your CLA here: <https://code.facebook.com/cla>
29+
30+
## Issues
31+
32+
We use GitHub issues to track public bugs. Please ensure your description is
33+
clear and has sufficient instructions to be able to reproduce the issue.
34+
35+
Meta has a [bounty program](https://bugbounty.meta.com/) for the safe
36+
disclosure of security bugs. In those cases, please go through the process
37+
outlined on that page and do not file a public issue.
38+
39+
## Coding Style
40+
41+
* 2 spaces for indentation rather than tabs
42+
* 80 character line length
43+
44+
## License
45+
46+
By contributing to FedCM Example App, you agree that your contributions will be licensed
47+
under the LICENSE file in the root directory of this source tree.

LICENSE

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Copyright (c) Meta Platforms, Inc. and affiliates.
2+
All rights reserved.
3+
4+
You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
5+
copy, modify, and distribute this software in source code or binary form for use
6+
in connection with the web services and APIs provided by Facebook.
7+
8+
As with any software that integrates with the Facebook platform, your use of
9+
this software is subject to the Facebook Platform Policy
10+
[http://developers.facebook.com/policy/]. This copyright notice shall be
11+
included in all copies or substantial portions of the software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
15+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
16+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)