Перейти к файлу
Kate Hudson 53f41ba84a Fix bug 1000267 - Add webmaker usernames to featured mentors 2014-04-24 17:18:40 -04:00
less Fix bug 1000267 - Add webmaker usernames to featured mentors 2014-04-24 17:18:40 -04:00
lib Bug 994720 - Added web literacy skills to explore 2014-04-10 11:36:40 -04:00
locale/en_US Merge pull request #696 from gesa/1000260 2014-04-24 13:47:58 -05:00
public Fix travis 2014-04-23 17:13:50 -04:00
public_angular Fix bug 1000267 - Add webmaker usernames to featured mentors 2014-04-24 17:18:40 -04:00
routes Bug 994147 - Create Super Mentor badge detail page 2014-04-23 17:07:46 -04:00
test removing event guides and forwarding to event guides in events2 2014-03-25 14:39:39 -07:00
views bug 1000905 - import some of makerstrap for badges 2014-04-24 15:23:17 -04:00
.gitignore bug 991885 - Minify js and css in explore 2014-04-04 15:57:07 -04:00
.jsbeautifyrc adding jshint & jsbeautify config and grunt tasks 2013-11-05 17:20:01 -08:00
.jshintrc Removing unused variables 2013-12-03 16:17:40 -08: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 997176 - Implement new copy and images for /Explore landing 2014-04-21 11:03:10 -04: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 Bug 994147 - Create Super Mentor badge detail page 2014-04-23 17:07:46 -04:00
bower.json v1.0.76 2014-04-24 15:52:56 -04: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 994147 - Create Super Mentor badge detail page 2014-04-23 17:07:46 -04:00
gtf-ignored-keys.json Bug 984907 - Clean up json file after event removal 2014-03-18 17:28:13 -04:00
navigation.json bug987452 - Change title from Starter Makes to Resources 2014-03-27 17:51:41 -04:00
package.json v1.0.76 2014-04-24 15:52:56 -04: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.