Перейти к файлу
Ricardo Vazquez 522b79a2c0 Removing partner content from non-angular footer 2014-12-18 15:10:07 -05:00
less Removing partner content from non-angular footer 2014-12-18 15:10:07 -05:00
lib Making badges-permissions-model.js a thing of beauty 2014-07-02 15:06:25 -04:00
locale/en_US Merge pull request #1040 from gesa/1108818/splash 2014-12-18 11:34:07 -08:00
public Merge pull request #1040 from gesa/1108818/splash 2014-12-18 11:34:07 -08:00
routes Fixes Bug 1108804 - Add redirects for new Webmaker IA 2014-12-16 15:29:36 -08:00
test removing event guides and forwarding to event guides in events2 2014-03-25 14:39:39 -07:00
views Removing partner content from non-angular footer 2014-12-18 15:10:07 -05:00
.gitignore Bug 1013444 - Switched angular to html5 mode, moved public_angular into public, added support for /resources and /explore URLs 2014-05-21 18:14:10 -04:00
.jsbeautifyrc Bug 1013444 - Switched angular to html5 mode, moved public_angular into public, added support for /resources and /explore URLs 2014-05-21 18:14:10 -04:00
.jshintrc Bug 1021762 - Update wm.org to use isSuperMentor, not isCollaborator 2014-06-13 14:04:24 -04:00
.no-cache Bug 1049943 - Reland Webmaker Login 3.0 2014-12-15 18:05:54 -05:00
.travis.yml Bug 960687 - Stop TravisCI testing with node v0.8 2014-01-16 14:46:05 -05:00
CONTRIBUTING.md tweaking grunt task naming; adding CONTRIBUTING guidelines 2013-11-07 11:36:30 -08:00
Gruntfile.js Bug 1049943 - Reland Webmaker Login 3.0 2014-12-15 18:05:54 -05:00
LICENSE.txt Review fixes 2013-04-18 15:43:50 -04:00
Procfile NOBUG Added Procfile 2013-05-06 12:55:42 -04:00
README.md Bug 994946 - correct webmaker.org repo's README.md links 2014-04-10 23:15:21 +02:00
app.js Fixes Bug 1108804 - Add redirects for new Webmaker IA 2014-12-16 15:29:36 -08:00
bower.json Update to webmaker-login-ux v1.1.18 2014-12-16 14:59:30 -05:00
cluster.js Revert "Bug 914185 - Switch webmaker.org to use Webmaker Butler r=cade,daleee" 2013-09-11 11:04:27 -04:00
env.dist Bug 1108811 - Implement header for new IA 2014-12-16 15:29:35 -08:00
gtf-ignored-keys.json Bug 984907 - Clean up json file after event removal 2014-03-18 17:28:13 -04:00
navigation.json Fixing webmaker login causing nav to break 2014-12-17 14:06:56 -05:00
package.json bug1111985 - Update webmaker-i18n 2014-12-16 16:11:44 -05:00

README.md

Build Status Dependency Status Code Climate

webmaker.org

TLDR; if you've done this before

####Development

  1. git clone https://github.com/mozilla/webmaker.org
  2. npm install
  3. cp env.dist .env
  4. grunt dev (Builds front end js. If you aren't working on front end assets you can just do node app)

####Submitting PRs

  1. grunt (validate and compress images)
  2. Make a pull request against mozilla/master

##New Contributors

Please review our contributing guidelines here.

Dependencies

The setup portion of this README assumes you have the following installed:

  • Node.js & npm
  • Bower: npm install -g bower
  • grunt-cli: npm install -g grunt-cli

You should also have these Webmaker stack applications running:

Project Setup

  1. Clone webmaker.org and enter the directory: git clone https://github.com/mozilla/webmaker.org && cd webmaker.org
  2. Install webmaker.org's Node and Bower dependencies: npm install
  3. Copy the configuration template to its expected location: cp env.dist .env
  4. Open .env in your favourite text editor and ensure that your PORT, MAKE_ENDPOINT, LOGIN and LOGINAPI environment variables are set to the correct values. PORT can be any available port. MAKE_ENDPOINT, LOGIN and LOGINAPI should point to the URL of your running MakeAPI and Webmaker Login service instances.
  5. Run grunt dev, and open up http://localhost:7777/ in your favourite web browser!

Grunt Tasks

  • grunt - Validate LESS, beautify and lint JS, compress images as needed. Run before you push.
  • grunt dev - Run the server and build js files as they are changed
  • grunt verify - Verify LESS and JS are formatted and lint free. Read only. Used by Travis.