-
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.
Merge pull request #12 from ciatph/dev
v1.0.0
- Loading branch information
Showing
10 changed files
with
76 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
name: Lint Files | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- master | ||
on: [push] | ||
|
||
jobs: | ||
lint-client: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "firebase-users-admin", | ||
"version": "1.0.0", | ||
"description": "API for Firebase Authentication users management using the firebase-admin SDK.", | ||
"main": "index.js", | ||
"scripts": { | ||
"install": "cd server && npm install", | ||
"build": "cd server && npm run build", | ||
"start": "cd server && npm start" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/ciatph/firebase-users-admin.git" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/ciatph/firebase-users-admin/issues" | ||
}, | ||
"homepage": "https://github.com/ciatph/firebase-users-admin#readme" | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
### Introduction | ||
|
||
CRUD API for Firebase Authentication users management using the firebase-admin SDK | ||
|
||
### Demo | ||
|
||
<p>Login using the default user credentials:</p> | ||
|
||
``` | ||
username: superamin@gmail.com | ||
password: 123456789 | ||
``` | ||
|
||
- **live client app:** [https://fire-auth-users.web.app/](https://fire-auth-users.web.app/) | ||
- **localhost app:** [http://localhost:3000](http://localhost:3000) | ||
- Read more about the localhost environment set-up instructions on [firebase-auth-users](https://github.com/ciatph/firebase-users-admin) | ||
|
||
### References | ||
|
||
- [firebase-auth-users](https://github.com/ciatph/firebase-users-admin) (GitHub repo) | ||
- [Firebase Authentication](https://firebase.google.com/docs/auth) | ||
- [Firebase Admin](https://firebase.google.com/docs/admin/setup) |