DEPRECATED - Migrated to https://github.com/mozilla/fxa
Перейти к файлу
Vlad Filippov 005549a9a7 feat(server): try to verify emails on the server (#4794) r=vbudhram 2017-03-21 12:09:34 -04:00
app feat(server): try to verify emails on the server (#4794) r=vbudhram 2017-03-21 12:09:34 -04:00
docs fix(reset-password): Fix the reset password flow w/ e10s enabled! (#4770) r=vladikoff 2017-03-03 10:41:20 -05:00
grunttasks feat(tests): Reload mocha tests whenever source/js changes. (#4752) r=vladikoff,vbudhram 2017-02-23 13:57:55 -05:00
locale fix(l10n): move l10n install into postinstall (#4498) r=vbudhram 2016-12-13 11:49:32 -05:00
scripts fix(docker): add bower instructions and l10n fix (#4663) 2017-01-24 10:32:47 -05:00
server feat(server): try to verify emails on the server (#4794) r=vbudhram 2017-03-21 12:09:34 -04:00
tests feat(server): try to verify emails on the server (#4794) r=vbudhram 2017-03-21 12:09:34 -04:00
.bowerrc chore(build): disable bower analytics 2015-07-06 17:46:05 -07:00
.editorconfig feat(oauth): suggest account to use during sign up if possible 2015-04-28 16:59:10 -04:00
.eslintignore chore(lint): switch from JSHint to ESLint 2015-06-12 14:06:52 -07:00
.eslintrc feat(eslint-plugin-fxa): using 1 repository of eslint rules (#4698) 2017-02-09 21:10:26 -05:00
.gitattributes Generated basic Yeoman project. 2013-12-04 11:55:48 -08:00
.gitignore chore(git): Update .gitignore to support nested .eslintrc files (#4409) r=vladikoff 2016-11-15 19:01:12 -05:00
.htmllintrc chore(htmllint): add htmllint to repo 2015-07-13 16:36:54 -07:00
.nsprc chore(nsp): remove exceptions (#4416) r=pdehaan 2016-11-16 16:17:52 -05:00
.sass-lint.yml chore(sass-lint): add sass linting (#3732) r=vladikoff,pdehaan 2016-05-16 15:32:55 -07:00
.travis.yml fix(tests): update to support latest Firefox driver (#4442) 2016-12-28 17:40:49 -05:00
AUTHORS Release v1.83.0 2017-03-21 00:23:33 -04:00
CHANGELOG.md Release v1.83.0 2017-03-21 00:23:33 -04:00
CONTRIBUTING.md fix(l10n): move l10n install into postinstall (#4498) r=vbudhram 2016-12-13 11:49:32 -05:00
Dockerfile feat(docker): Dockerfile and README update for basic docker development workflow 2015-02-17 22:16:13 -05:00
Dockerfile-build fix(build): Add Dockerfile-build which is needed by Circle. (#4662) r=@shane-tomlinson 2017-01-24 11:09:23 +00:00
Gruntfile.js chore(build): Include license header at the top of minified main.js 2015-07-01 10:04:26 -07:00
LICENSE Add MPL 2.0 license file. 2014-08-18 14:47:36 -07:00
README.md fix(tests): update to support latest Firefox driver (#4442) 2016-12-28 17:40:49 -05:00
bower.json feat(websessions): add Sessions to client list (#4628) r=stomlinson,vbudhram 2017-03-17 13:42:48 -04:00
circle.yml fix(docker): Start docker service 2017-01-23 16:52:42 -05:00
npm-shrinkwrap.json feat(CSP): Use joi to validate CSP reports. (#4746) 2017-02-24 13:55:37 -05:00
package.json Release v1.83.0 2017-03-21 00:23:33 -04:00

README.md

Firefox Accounts Content Server

Build Status: Travis Build Status: Circle CI Coverage Status

Static server that hosts Firefox Account sign up, sign in, email verification, etc. flows.

Quick Start

Clone the repository, make sure you have required prerequisites installed. Run npm install and npm run start-remote. This will start a local fxa-content-server on http://127.0.0.1:3030 that works with remote Firefox Accounts servers.

If you want to install all Firefox Accounts servers locally follow the instructions on: fxa-local-dev to get a full development setup running. Please note that fxa-local-dev is the preferred way of contributing to Firefox Accounts.

Development Notes

Changes to stylesheets

To have the css resources automatically rebuilt after changes, run grunt sass watch. Now whenever a change is made to the .scss files, the corresponding css resources will be rebuilt.

Changes to scripts and templates

Any changes made to the scripts or the template files will automatically be reflected on page refresh.

Testing

Prerequisites:

Setup

To run tests locally with Selenium:

npm test

To change the default auth server edit server/config/*.json on your deployed instance.

{
  "fxaccount_url": "http://your.auth.server.here.org"
}

Note that testing with Selenium via Docker does not work at present, so all testing must be carried out via your normal operating system's npm & Java tooling.

Grunt Commands

Grunt is used to run common tasks to build, test, and run local servers.

TASK DESCRIPTION
grunt build build production resources. See task source for more documentation
grunt clean remove any built production resources.
grunt lint run ESLint, Sass-lint, amdcheck and JSONLint on client side and testing JavaScript.
grunt sass watch rebuild css resources automatically when changes are made to the .scss files (file needs to be saved).
grunt server run a local server running on port 3030 with development resources.
grunt server:dist run a local server running on port 3030 with production resources. Production resources will be built as part of the task.
grunt test run local Intern tests.
grunt version stamp a new minor version. Updates the version number and creates a new CHANGELOG.md.
grunt version:patch stamp a new patch version. Updates the version number and creates a new CHANGELOG.md.

Servers

License

MPL 2.0