https://github.com/mozilla/fxa-oauth-console
Firefox Accounts OAuth Credential Management Dashboard
https://github.com/mozilla/fxa-oauth-console
fxa
Last synced: 3 months ago
JSON representation
Firefox Accounts OAuth Credential Management Dashboard
- Host: GitHub
- URL: https://github.com/mozilla/fxa-oauth-console
- Owner: mozilla
- License: mpl-2.0
- Archived: true
- Created: 2014-09-29T19:49:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-05-15T14:07:29.000Z (almost 5 years ago)
- Last Synced: 2025-01-16T16:24:26.223Z (4 months ago)
- Topics: fxa
- Language: JavaScript
- Homepage:
- Size: 8.5 MB
- Stars: 9
- Watchers: 26
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - mozilla/fxa-oauth-console - Firefox Accounts OAuth Credential Management Dashboard (others)
README
# Firefox Accounts OAuth Credential Management Dashboard
[](https://travis-ci.org/mozilla/fxa-oauth-console)

## Development```
git clone https://github.com/mozilla/fxa-oauth-console
cd fxa-oauth-console
npm install
```Run development server locally:
```
npm start
```## Docker Dev
You can run the docker container by:
* ```docker-compose build```
* ```docker-compose up```#### Changing environment configuration.
You can customize the servers that the app communicates with by passing them in the docker-compose file.```yml
environment:
PROFILE_URI: https://127.0.0.1:9010/v1
OAUTH_INTERNAL_URI: https://127.0.0.1:9010/v1
OAUTH_URI: https://127.0.0.1:1111/profile/v1
```**You will need a local Firefox Accounts stack to login to the console.** Use [fxa-local-dev](https://github.com/vladikoff/fxa-local-dev) to get started.
Run tests: `npm test`
## License
[MPL v2.0](LICENSE)