DEPRECATED - Migrated to https://github.com/mozilla/fxa
Перейти к файлу
Sean McArthur e2b85293dd Release v0.71.0 2016-10-05 09:21:31 -07:00
bin chore(convict): use .getProperties(), not deprecated .root() 2016-03-24 19:17:43 -07:00
config feat(server): rate limit avatar uploads (#201) r=vladikoff 2016-08-16 00:32:58 -04:00
coverage add coverage reporting to grunt-mocha-test 2014-06-21 22:21:03 -07:00
docs feat(server): rate limit avatar uploads (#201) r=vladikoff 2016-08-16 00:32:58 -04:00
lib fix(config): Add env key to required config variables (#211) r=vladikoff 2016-09-28 13:12:40 -04:00
scripts Merge pull request #196 from jbuck/docker-exec 2016-07-21 16:33:21 -07:00
tasks chore(release): bump version with 'grunt version' (#200) r=jrgm,vbudhram 2016-07-25 21:07:12 -04:00
test fix(deps): update to latest hapi, joi and boom. requires node 4+ 2016-09-26 10:24:45 -04:00
.dockerignore feat(docker): Additional Dockerfile for self-hosting 2016-01-26 09:41:07 +01:00
.eslintrc chore(deps): Update all the dependencies 2016-02-15 17:05:55 +11:00
.gitignore test(mocks): improve state of mocking in tests 2015-02-09 17:42:58 -08:00
.jscs.json chore(deps): Update all the dependencies 2016-02-15 17:05:55 +11:00
.jshintrc review fixes, delete route, and more 2014-08-22 16:33:58 -07:00
.travis.yml fix(deps): update to latest hapi, joi and boom. requires node 4+ 2016-09-26 10:24:45 -04:00
CHANGELOG.md Release v0.71.0 2016-10-05 09:21:31 -07:00
CONTRIBUTING.md chore(release): bump version with 'grunt version' (#200) r=jrgm,vbudhram 2016-07-25 21:07:12 -04:00
Dockerfile feat(docker): Dockerfile and README update for basic docker development workflow 2015-02-10 22:14:54 -05:00
Dockerfile-build fix(deps): update to latest hapi, joi and boom. requires node 4+ 2016-09-26 10:24:45 -04:00
Gruntfile.js fix(build): remove shrinkwrap validate 2015-11-09 14:50:37 -05:00
LICENSE init profiles 2014-02-04 12:27:40 -08:00
README.md chore(docs): add circleci badge 2016-08-10 10:35:56 -04:00
circle.yml fix(docker): Output version.json in RPMflow and Dockerflow compatible locations 2016-07-11 17:29:02 -04:00
npm-shrinkwrap.json Release v0.71.0 2016-10-05 09:21:31 -07:00
package.json Release v0.71.0 2016-10-05 09:21:31 -07:00

README.md

Firefox Accounts Profile Service

Build Status CircleCI Docker Image Status

A server to provide common profile-related data for a Firefox Account. Such as name, avatar, location, age, gender, etc.

Development

Dependencies:

  • gm (GraphicsMagick)

Installation:

git clone https://github.com/mozilla/fxa-profile-server
cd fxa-profile-server
npm 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 npm 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

License

MPL v2.0