Skip to content

Commit

Permalink
add signup package required for extension auth
Browse files Browse the repository at this point in the history
  • Loading branch information
chinchang committed May 9, 2024
1 parent 3c8bf5e commit 346adb5
Show file tree
Hide file tree
Showing 10 changed files with 8,399 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ extension/
yarn-error.log
src/locales/_build
extension-*.zip
.parcel-cache/
2 changes: 2 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ gulp.task('buildDistFolder', function (cb) {
child_process.execSync('rm -rf dist');
child_process.execSync('mv packages/website/_site dist');
child_process.execSync(`mv ${APP_FOLDER} dist/`);
child_process.execSync(`mkdir dist/signup`);
child_process.execSync(`cp packages/signup/dist/*.* dist/signup/`);
cb();
});

Expand Down
1,187 changes: 1,187 additions & 0 deletions packages/signup/dist/index.1903c1b7.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/signup/dist/index.1903c1b7.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/signup/dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html><head><title>signInWithPopup</title></head><body> <h1>signInWithPopup</h1> <script type="module" src="/index.1903c1b7.js"></script> </body></html>
8 changes: 8 additions & 0 deletions packages/signup/firebaseConfig.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export const config = {
apiKey: 'AIzaSyBl8Dz7ZOE7aP75mipYl2zKdLSRzBU2fFc',
authDomain: 'web-maker-app.firebaseapp.com',
databaseURL: 'https://web-maker-app.firebaseio.com',
projectId: 'web-maker-app',
storageBucket: 'web-maker-app.appspot.com',
messagingSenderId: '560473480645'
};
11 changes: 11 additions & 0 deletions packages/signup/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!doctype html>
<html>
<head>
<title>signInWithPopup</title>
</head>
<body>
<h1>signInWithPopup</h1>

<script type="module" src="signInWithPopup.js"></script>
</body>
</html>
Loading

0 comments on commit 346adb5

Please sign in to comment.