Merge remote-tracking branch 'upstream/staging' into patch-3

This commit is contained in:
Abhisek Pattnaik
2015-08-30 13:49:04 +05:30
167 changed files with 1835 additions and 1567 deletions

17
.gitignore vendored
View File

@ -30,5 +30,20 @@ coverage
.remote-sync.json .remote-sync.json
server/*.bundle.js server/*.bundle.js
public/js/*.bundle.js public/js/bundle*
*.map *.map
// revision manifest
server/rev-manifest.json
server/manifests/*
!server/manifests/README.md
public/js/main*
public/js/commonFramework*
public/js/sandbox*
public/js/iFrameScripts*
public/js/plugin*
public/css/main*
server/rev-manifest.json

2
CONTRIBUTING.md Normal file
View File

@ -0,0 +1,2 @@
We're getting a lot of duplicate issues and bug reports that just aren't reporting actual bugs.
So, before you submit your issue, please read the [Help I've Found a Bug](https://github.com/FreeCodeCamp/FreeCodeCamp/wiki/Help-I've-Found-a-Bug) wiki page.

View File

@ -66,6 +66,8 @@ bower install
# Create a .env file and populate it with the necessary API keys and secrets: # Create a .env file and populate it with the necessary API keys and secrets:
touch .env touch .env
# Install Gulp globally
npm install -g gulp
``` ```
Edit your .env file with the following API keys accordingly (if you only use email login, only the MONGOHQ_URL, SESSION_SECRET, MANDRILL_USER and MANDRILL_PASSWORD fields are necessary. Keep in mind if you want to use more services you'll have to get your own API keys for those services. Edit your .env file with the following API keys accordingly (if you only use email login, only the MONGOHQ_URL, SESSION_SECRET, MANDRILL_USER and MANDRILL_PASSWORD fields are necessary. Keep in mind if you want to use more services you'll have to get your own API keys for those services.
@ -112,6 +114,11 @@ DEBUG=true
# Start the mongo server # Start the mongo server
mongod mongod
# Create your mongo database.
# Type "mongo" in your terminal to access the mongo shell
use freecodecamp
# Exit the mongo shell with control + d
# Seed your database with the challenges # Seed your database with the challenges
node seed/ node seed/

View File

@ -1,4 +1,4 @@
This is the entry point for the client This is the entry point for the client code
Code that should only run on the client should be put here. Code that should only run on the client should be put here.
NOTE(berks): For react specific stuff this should be the entry point NOTE(berks): For react specific stuff this should be the entry point

769
client/commonFramework.js Normal file

File diff suppressed because one or more lines are too long

View File

Before

Width:  |  Height:  |  Size: 306 KiB

After

Width:  |  Height:  |  Size: 306 KiB

Some files were not shown because too many files have changed in this diff Show More