DEPRECATED - Migrated to https://github.com/mozilla/fxa
Перейти к файлу
Vijay Budhram df1c4f288d fix(token): disable token code experiment for sync users (#6007) r=@vladikoff 2018-03-28 13:44:10 -04:00
app fix(token): disable token code experiment for sync users (#6007) r=@vladikoff 2018-03-28 13:44:10 -04:00
docs docs(metrics): Document new entrypoint=whatsnew value. (#5951) r=@vladikoff 2018-03-06 06:32:41 -05:00
grunttasks refactor(js): remove require.js remains (#5953) r=@vbudhram 2018-03-06 19:05:09 -05:00
locale refactor(deps): remove bower (#5915) r=@vbudhram 2018-02-15 15:52:17 -05:00
scripts refactor(l10n): extract l10n from node_modules (#5395) r=@shane-tomlinson 2017-09-06 13:18:38 +01:00
server feat(webpack): load imports from CDN (#5989) r=@philbooth 2018-03-20 10:12:32 -04:00
tests feat(webpack): load imports from CDN (#5989) r=@philbooth 2018-03-20 10:12:32 -04:00
.editorconfig feat(forms): replace our password advice with responsive message (#5940) r=@vbudhram,@ryanfeeley 2018-03-02 20:41:37 -05:00
.eslintignore refactor(deps): remove bower (#5915) r=@vbudhram 2018-02-15 15:52:17 -05:00
.eslintrc feat(eslint): bring back indent rule (#5887) r=@vbudhram 2018-02-08 09:35:23 -05:00
.gitattributes Generated basic Yeoman project. 2013-12-04 11:55:48 -08:00
.gitignore refactor(deps): remove bower (#5915) r=@vbudhram 2018-02-15 15:52:17 -05:00
.htmllintrc chore(htmllint): add htmllint to repo 2015-07-13 16:36:54 -07:00
.nsprc fix(nsp): disable nsp 566 (#5920) 2018-02-16 09:12:34 -05:00
.nvmrc feat(node): upgrade to Node 6 (#5173) r=@shane-tomlinson 2017-06-29 00:56:46 +01:00
.sass-lint.yml feat(sass): SASS lint warnings are now errors. (#5700) r=@vladikoff 2017-11-10 10:20:01 -05:00
.travis.yml refactor(deps): remove bower (#5915) r=@vbudhram 2018-02-15 15:52:17 -05:00
AUTHORS Release v1.108.0 2018-03-20 12:17:06 -04:00
CHANGELOG.md Release v1.108.0 2018-03-20 12:17:06 -04:00
CONTRIBUTING.md refactor(deps): remove bower (#5915) r=@vbudhram 2018-02-15 15:52:17 -05:00
Dockerfile-build refactor(deps): remove bower (#5915) r=@vbudhram 2018-02-15 15:52:17 -05:00
Gruntfile.js chore(dependencies): upgrade away from deprecated mozlog usage (#5349) r=vladikoff 2017-08-11 10:24:31 -04:00
LICENSE Add MPL 2.0 license file. 2014-08-18 14:47:36 -07:00
README.md feat(docs): Add separators to README.md (#5784) r=@shane-tomlinson 2017-12-15 20:18:03 +00:00
circle.yml fix(tests): add totp functional tests (#5980), r=@vladikoff 2018-03-20 03:29:06 +00:00
npm-shrinkwrap.json chore(package): update speed-trap, regenerate shrinkwrap (#5974) r=@vladikoff 2018-03-12 14:34:45 -04:00
package.json Release v1.108.0 2018-03-20 12:17:06 -04:00
webpack.config.js feat(webpack): load imports from CDN (#5989) r=@philbooth 2018-03-20 10:12:32 -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