зеркало из https://github.com/mozilla/fxa.git
83dc649b52
Because: - Sentry 8 is the latest version This commit: - deletes some integration code since Sentry does it automatically - updates code to use the Sentry 8 API - updates a few proxyquire calls because they were cause module not found errors in CI |
||
---|---|---|
.. | ||
bin | ||
config | ||
docs | ||
lib | ||
scripts | ||
test | ||
.eslintrc | ||
.nsprc | ||
.prettierignore | ||
README.md | ||
backstage.yaml | ||
package.json | ||
pm2.config.js |
README.md
Firefox Accounts Profile Service
A server to provide common profile-related data for a Firefox Account. Such as name, avatar, location, age, gender, etc.
Development
Installation:
git clone https://github.com/mozilla/fxa-profile-server
cd fxa-profile-server
yarn install
Docker Based Development
To run the profile server via Docker, two steps are required:
$ docker build --rm -t mozilla/fxa_profile_server
$ docker run --rm -v $PWD:/opt/fxa mozilla/fxa_profile_server yarn install
$ docker run --rm -v $PWD:/opt/fxa --net=host mozilla/fxa_profile_server
This method shares the codebase into the running container so that you can install npm and various modules required by package.json. It then runs profile-server in a container, while allowing you to use your IDE of choice from your normal desktop environment to develop code.
Running tests:
npm test
To run tests via Docker:
docker run --rm -v $PWD:/opt/fxa --net=host mozilla/fxa_profile_server npm test
Running the server locally:
npm start