freeCodeCamp/README.md

179 lines
12 KiB
Markdown
Raw Normal View History

2015-03-06 22:09:38 +00:00
[![Throughput Graph](https://graphs.waffle.io/freecodecamp/freecodecamp/throughput.svg)](https://waffle.io/freecodecamp/freecodecamp/metrics)
2015-02-27 09:18:46 +00:00
[![Stories in Ready](https://badge.waffle.io/FreeCodeCamp/freecodecamp.png?label=ready&title=Ready)](https://waffle.io/FreeCodeCamp/freecodecamp)
2014-12-24 18:57:40 +00:00
<img src="https://s3.amazonaws.com/freecodecamp/logo4.0LG.png">
2015-04-24 00:51:45 +00:00
Welcome to Free Code Camp's open source codebase!
=======================
2013-12-29 23:43:07 +00:00
2015-04-24 00:51:45 +00:00
Free Code Camp is an open-source community of busy people who learn to code, then build projects for nonprofits.
2014-12-24 18:57:40 +00:00
2015-04-24 00:51:45 +00:00
Our campers (students) start by working through our free, self-paced, browser-based curriculum. Next, they build several practice projects. Finally, we pair two campers together with a stakeholder from a nonprofit organization, and help them build the solution the nonprofit has requested.
**We help our campers build job-worthy portfolios of real apps used by real people, while helping nonprofits.**
80% of our campers are over 25, and nearly a fifth of our campers are women.
This code is running live at [FreeCodeCamp.com](http://www.FreeCodeCamp.com). We also have [Slack](http://freecode.slack.com), a [blog](http://blog.freecodecamp.com), and even a [Twitch.tv channel](http://twitch.tv/freecodecamp).
[Join our community](http://www.freecodecamp.com/signin)!
Contributing
------------
We welcome pull requests from Free Code Camp campers (our students) and seasoned JavaScript developers alike! Follow these steps to contribute:
1. Check our [public Waffle Board](https://waffle.io/freecodecamp/freecodecamp).
2. Pick an issue that nobody has claimed and start working on it. If your issue isn't on the board, open an issue. If you think you can fix it yourself, start working on it. Feel free to ask for help in our [Slack](http://freecode.slack.com).
3. Fork the project ([Need help with forking a project?](https://help.github.com/articles/fork-a-repo/)). You'll do all of your work on your forked copy.
4. Create a branch specific to the issue or feature you are working on. Push your work to that branch. ([Need help with branching?](https://github.com/Kunena/Kunena-Forum/wiki/Create-a-new-branch-with-git-and-manage-branches))
5. Name the branch something like `user-xxx` where user is your username and xxx is the issue number you are addressing.
6. You should have [ESLint running in your editor](http://eslint.org/docs/user-guide/integrations.html), and it will highlight anything doesn't conform to [AirBnB's JavaScript Style Guide](https://github.com/airbnb/javascript). Please do not ignore any linting errors, as they are meant to **help** you. Make sure none of your JavaScript is longer than 80 characters per line.
7. Once your code is ready, submit a pull request from your branch to Free Code Camp's `staging` branch. We'll do a quick code review and give you feedback, then iterate from there.
8. Once we accept one of your pull requests, one of the project owners (currently @quincylarson, @terakilobyte, and @berkeleytrue) will add you to our camper contributor group.
2014-12-24 18:57:40 +00:00
2013-12-29 23:22:44 +00:00
Prerequisites
-------------
2014-02-02 09:20:53 +00:00
- [MongoDB](http://www.mongodb.org/downloads)
- [Node.js](http://nodejs.org)
2013-12-29 23:22:44 +00:00
2014-01-27 01:08:22 +00:00
Getting Started
---------------
2014-01-27 01:08:22 +00:00
The easiest way to get started is to clone the repository:
2014-01-12 04:22:26 +00:00
2014-01-27 01:08:22 +00:00
```bash
2014-06-03 04:43:47 +00:00
# Get the latest snapshot
2014-12-24 18:57:40 +00:00
git clone --depth=1 https://github.com/freecodecamp/freecodecamp.git freecodecamp
2014-01-27 01:08:22 +00:00
2014-12-24 18:57:40 +00:00
cd freecodecamp
2014-01-27 01:08:22 +00:00
# Install NPM dependencies
2013-12-29 23:22:44 +00:00
npm install
2014-01-27 01:08:22 +00:00
2014-12-24 18:57:40 +00:00
# Create a .env file and populate it with the necessary API keys and secrets:
touch .env
2014-12-24 18:57:40 +00:00
```
2014-02-05 16:37:48 +00:00
2014-12-24 18:57:40 +00:00
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:
2014-02-05 16:37:48 +00:00
2014-12-24 18:57:40 +00:00
```
2014-12-24 18:57:40 +00:00
MONGOHQ_URL='mongodb://localhost:27017/freecodecamp'
SESSION_SECRET='ANY ENGLISH PHRASE'
MANDRILL_USER='THE EMAIL ADDRESS FROM YOUR MANDRILL ACCOUNT'
MANDRILL_PASSWORD='YOUR MANDRILL PASSWORD'
FACEBOOK_ID='FACEBOOK APP API KEY'
FACEBOOK_SECRET='FACEBOOK SECRET'
GITHUB_ID='GITHUB APP API KEY'
GITHUB_SECRET='GITHUB APP SECRET'
TWITTER_KEY='TWITTER APP API KEY'
TWITTER_SECRET='TWITTER APP SECRET'
GOOGLE_ID='GOOGLE APP API KEY'
GOOGLE_SECRET='GOOGLE APP SECRET'
LINKEDIN_ID='LINKEDIN APP API KEY'
LINKEDIN_SECRET='LINKEDIN APP SECRET'
2014-04-22 05:18:31 +00:00
2014-12-24 18:57:40 +00:00
```
2014-04-22 05:18:31 +00:00
2014-12-24 18:57:40 +00:00
```bash
# Start the mongo server
mongod
# Seed your database with the challenges
node seed_data/seed.js
2014-12-24 18:57:40 +00:00
# start the application
gulp
2014-12-24 18:57:40 +00:00
```
2014-01-27 07:03:30 +00:00
Project Structure
-----------------
2014-04-15 01:04:48 +00:00
| Name | Description |
| ---------------------------------- |:-----------------------------------------------------------:|
| **config**/passport.js | Passport Local and OAuth strategies, plus login middleware. |
| **config**/secrets.js | Your API keys, tokens, passwords and database URL. |
| **controllers**/contact.js | Controller for contact form. |
| **controllers**/home.js | Controller for home page (index). |
| **controllers**/user.js | Controller for user account management. |
2014-12-24 18:57:40 +00:00
| **controllers**/challenges.js | Controller for rendering the challenges. |
2014-04-15 01:04:48 +00:00
| **models**/User.js | Mongoose schema and model for User. |
2014-12-24 18:57:40 +00:00
| **models**/Challenge.js | Mongoose schema and model for Challenge. |
2014-04-15 01:04:48 +00:00
| **public**/ | Static assets (fonts, css, js, img). |
| **public**/**js**/application.js | Specify client-side JavaScript dependencies. |
| **public**/**js**/main.js | Place your client-side JavaScript here. |
2014-12-24 18:57:40 +00:00
| **public**/**css**/main.less | Main stylesheet for the app. |
2014-04-15 01:04:48 +00:00
| **views/account**/ | Templates for *login, password reset, signup, profile*. |
2014-02-06 12:21:47 +00:00
| **views/partials**/flash.jade | Error, info and success flash notifications. |
2014-01-29 04:06:33 +00:00
| **views/partials**/navigation.jade | Navbar partial template. |
| **views/partials**/footer.jade | Footer partial template. |
| **views**/layout.jade | Base template. |
| **views**/home.jade | Home page template. |
| app.js | Main application file. |
2014-04-15 01:04:48 +00:00
2014-01-27 12:05:56 +00:00
List of Packages
----------------
2014-04-15 01:56:47 +00:00
2014-12-24 18:57:40 +00:00
| Package | Description |
| ------------------------------- |:--------------------------------------------------------------------:|
| async | Utility library that provides asynchronous control flow. |
| bcrypt-nodejs | Library for hashing and salting user passwords. |
| cheerio | Scrape web pages using jQuery-style syntax. |
| clockwork | Clockwork SMS API library. |
| connect-assets | Compiles LESS stylesheets, concatenates & minifies JavaScript. |
| connect-mongo | MongoDB session store for Express. |
| csso | Dependency for connect-assets library to minify CSS. |
| express | Node.js web framework. |
| body-parser | Express 4.0 middleware. |
| cookie-parser | Express 4.0 middleware. |
| express-session | Express 4.0 middleware. |
| morgan | Express 4.0 middleware. |
| compression | Express 4.0 middleware. |
| errorhandler | Express 4.0 middleware. |
| method-override | Express 4.0 middleware. |
| express-flash | Provides flash messages for Express. |
| express-validator | Easy form validation for Express. |
| fbgraph | Facebook Graph API library. |
| github-api | GitHub API library. |
| jade | Template engine for Express. |
| less | LESS compiler. Used implicitly by connect-assets. |
| helmet | Restricts Cross site requests. You can modify its settings in app.js |
| mongoose | MongoDB ODM. |
| nodemailer | Node.js library for sending emails. |
| passport | Simple and elegant authentication library for node.js |
| passport-facebook | Sign-in with Facebook plugin. |
| passport-github | Sign-in with GitHub plugin. |
| passport-google-oauth | Sign-in with Google plugin. |
| passport-twitter | Sign-in with Twitter plugin. |
| passport-local | Sign-in with Username and Password plugin. |
| passport-linkedin-oauth2 | Sign-in with LinkedIn plugin. |
| passport-oauth | Allows you to set up your own OAuth 1.0a and OAuth 2.0 strategies. |
| request | Simplified HTTP request library. |
2015-02-11 19:48:45 +00:00
| lodash | Handy JavaScript utilities library. |
2014-12-24 18:57:40 +00:00
| uglify-js | Dependency for connect-assets library to minify JS. |
| mocha | Test framework. |
| chai | BDD/TDD assertion library. |
| supertest | HTTP assertion library. |
| multiline | Multi-line strings for the generator. |
License
-------
2014-04-15 03:14:56 +00:00
The MIT License (MIT)
2014-12-24 18:57:40 +00:00
Copyright (c) 2015 Sahat Yalkabov (creator of the Hackathon Starter App with which Free Code Camp started)
Copyright (c) 2015 Quincy Larson (the guy who started Free Code Camp and wrote a lot of the code here)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.