Merge pull request #12543 from Manish-Giri/fix/rename-freeCodeCamp-md-files
Rename to freeCodeCamp in md files
This commit is contained in:
6
.github/PULL_REQUEST_TEMPLATE.md
vendored
6
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,6 +1,6 @@
|
||||
<!-- FreeCodeCamp Pull Request Template -->
|
||||
<!-- freeCodeCamp Pull Request Template -->
|
||||
|
||||
<!-- IMPORTANT Please review https://github.com/FreeCodeCamp/FreeCodeCamp/blob/staging/CONTRIBUTING.md for detailed contributing guidelines -->
|
||||
<!-- IMPORTANT Please review https://github.com/freeCodeCamp/freeCodeCamp/blob/staging/CONTRIBUTING.md for detailed contributing guidelines -->
|
||||
<!-- Help with PRs can be found at https://gitter.im/FreeCodeCamp/Contributors -->
|
||||
<!-- Make sure that your PR is not a duplicate -->
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply. -->
|
||||
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
|
||||
<!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
|
||||
- [ ] Your pull request targets the `staging` branch of FreeCodeCamp.
|
||||
- [ ] Your pull request targets the `staging` branch of freeCodeCamp.
|
||||
- [ ] Branch starts with either `fix/`, `feature/`, or `translate/` (e.g. `fix/signin-issue`)
|
||||
- [ ] You have only one commit (if not, [squash](http://forum.freecodecamp.com/t/how-to-squash-multiple-commits-into-one-with-git/13231) them into one commit).
|
||||
- [ ] All new and existing tests pass the command `npm test`. Use `git commit --amend` to amend any fixes.
|
||||
|
@ -1,8 +1,8 @@
|
||||
# Contributor's Guide
|
||||
|
||||
We welcome pull requests from Free Code Camp campers (our students) and seasoned JavaScript developers alike! Follow these steps to contribute:
|
||||
We welcome pull requests from freeCodeCamp campers (our students) and seasoned JavaScript developers alike! Follow these steps to contribute:
|
||||
|
||||
1. Find an issue that needs assistance by searching for the [Help Wanted](https://github.com/FreeCodeCamp/FreeCodeCamp/labels/help%20wanted) tag.
|
||||
1. Find an issue that needs assistance by searching for the [Help Wanted](https://github.com/freeCodeCamp/freeCodeCamp/labels/help%20wanted) tag.
|
||||
|
||||
2. Let us know you are working on it by posting a comment on the issue.
|
||||
|
||||
@ -20,7 +20,7 @@ Remember to feel free to ask for help in our [Contributors](https://gitter.im/Fr
|
||||
- [Forking The Project](#forking-the-project)
|
||||
- [Create A Branch](#create-a-branch)
|
||||
- [Setup Linting](#setup-linting)
|
||||
- [Setup FreeCodeCamp](#setup-freecodecamp)
|
||||
- [Setup freeCodeCamp](#setup-freecodecamp)
|
||||
- [Make Changes](#make-changes)
|
||||
- [Run The Test Suite](#run-the-test-suite)
|
||||
- [Squash Your Commits](#squash-your-commits)
|
||||
@ -58,19 +58,19 @@ If your versions are lower than the prerequisite versions, you should update.
|
||||
2. (Optional) [Setup an SSH Key](https://help.github.com/articles/generating-an-ssh-key/) for GitHub.
|
||||
3. Create a parent projects directory on your system. For this guide, it will be assumed that it is `/mean/`
|
||||
|
||||
#### Forking FreeCodeCamp
|
||||
#### Forking freeCodeCamp
|
||||
|
||||
1. Go to the top level Free Code Camp repository: <https://github.com/FreeCodeCamp/freecodecamp>
|
||||
1. Go to the top level freeCodeCamp repository: <https://github.com/freeCodeCamp/freeCodeCamp>
|
||||
2. Click the "Fork" Button in the upper right hand corner of the interface ([More Details Here](https://help.github.com/articles/fork-a-repo/))
|
||||
3. After the repository has been forked, you will be taken to your copy of the FCC repo at `yourUsername/freecodecamp`
|
||||
3. After the repository has been forked, you will be taken to your copy of the FCC repo at `yourUsername/freeCodeCamp`
|
||||
|
||||
#### Cloning Your Fork
|
||||
|
||||
1. Open a Terminal / Command Line / Bash Shell in your projects directory (_i.e.: `/yourprojectdirectory/`_)
|
||||
2. Clone your fork of FreeCodeCamp
|
||||
2. Clone your fork of freeCodeCamp
|
||||
|
||||
```shell
|
||||
$ git clone https://github.com/yourUsername/FreeCodeCamp.git
|
||||
$ git clone https://github.com/yourUsername/freeCodeCamp.git
|
||||
```
|
||||
|
||||
##### (make sure to replace `yourUsername` with your GitHub Username)
|
||||
@ -79,11 +79,11 @@ This will download the entire FCC repo to your projects directory.
|
||||
|
||||
#### Setup Your Upstream
|
||||
|
||||
1. Change directory to the new FreeCodeCamp directory (`cd FreeCodeCamp`)
|
||||
1. Change directory to the new freeCodeCamp directory (`cd freeCodeCamp`)
|
||||
2. Add a remote to the official FCC repo:
|
||||
|
||||
```shell
|
||||
$ git remote add upstream https://github.com/FreeCodeCamp/FreeCodeCamp.git
|
||||
$ git remote add upstream https://github.com/freeCodeCamp/freeCodeCamp.git
|
||||
```
|
||||
|
||||
Congratulations, you now have a local copy of the FCC repo!
|
||||
@ -152,13 +152,13 @@ $ git push origin [name_of_your_new_branch]
|
||||
|
||||
### Setup Linting
|
||||
|
||||
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 [Free Code Camp's JavaScript Style Guide](http://forum.freecodecamp.com/t/free-code-camp-javascript-style-guide/19121) (you can find a summary of those rules [here](https://github.com/FreeCodeCamp/FreeCodeCamp/blob/staging/.eslintrc)).
|
||||
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 [freeCodeCamp's JavaScript Style Guide](http://forum.freecodecamp.com/t/free-code-camp-javascript-style-guide/19121) (you can find a summary of those rules [here](https://github.com/freeCodeCamp/freeCodeCamp/blob/staging/.eslintrc)).
|
||||
|
||||
> Please do not ignore any linting errors, as they are meant to **help** you and to ensure a clean and simple code base.
|
||||
|
||||
|
||||
### Setup FreeCodeCamp
|
||||
Once you have FreeCodeCamp cloned, before you start the application, you first need to install all of the dependencies:
|
||||
### Setup freeCodeCamp
|
||||
Once you have freeCodeCamp cloned, before you start the application, you first need to install all of the dependencies:
|
||||
|
||||
```bash
|
||||
# Install NPM dependencies
|
||||
@ -193,7 +193,7 @@ Now you will need to start MongoDB, and then seed the database, then you can sta
|
||||
# Start the mongo server in a separate terminal
|
||||
mongod
|
||||
|
||||
# Initialize Free Code Camp
|
||||
# Initialize freeCodeCamp
|
||||
# This will seed the database for the first time.
|
||||
# This command should only be run once.
|
||||
npm run only-once
|
||||
@ -226,7 +226,7 @@ congratulations – you're all set. Otherwise, let us know by asking in the [Con
|
||||
### Make Changes
|
||||
This bit is up to you!
|
||||
|
||||
#### How to find the code in the Free Code Camp codebase to fix/edit?
|
||||
#### How to find the code in the freeCodeCamp codebase to fix/edit?
|
||||
|
||||
The best way to find out any code you wish to change/add or remove is using
|
||||
the GitHub search bar at the top of the repository page. For example, you could
|
||||
@ -262,14 +262,14 @@ To do this, see [Squashing Your Commits](http://forum.freecodecamp.com/t/how-to-
|
||||
|
||||
#### What is a Pull Request?
|
||||
|
||||
A pull request (PR) is a method of submitting proposed changes to the Free Code
|
||||
Camp Repo (or any Repo, for that matter). You will make changes to copies of the
|
||||
files which make up Free Code Camp in a personal fork, then apply to have them
|
||||
accepted by Free Code Camp proper.
|
||||
A pull request (PR) is a method of submitting proposed changes to the freeCodeCamp
|
||||
Repo (or any Repo, for that matter). You will make changes to copies of the
|
||||
files which make up freeCodeCamp in a personal fork, then apply to have them
|
||||
accepted by freeCodeCamp proper.
|
||||
|
||||
#### Need Help?
|
||||
|
||||
Free Code Camp Issue Mods and staff are on hand to assist with Pull Request
|
||||
freeCodeCamp Issue Mods and staff are on hand to assist with Pull Request
|
||||
related issues in our [Contributors chat room](https://gitter.im/FreeCodeCamp/Contributors).
|
||||
|
||||
#### Important: ALWAYS EDIT ON A BRANCH
|
||||
@ -282,7 +282,7 @@ fork and re-fork.
|
||||
|
||||
#### Methods
|
||||
|
||||
There are two methods of creating a pull request for Free Code Camp:
|
||||
There are two methods of creating a pull request for freeCodeCamp:
|
||||
|
||||
- Editing files on a local clone (recommended)
|
||||
- Editing files via the GitHub Interface
|
||||
@ -290,7 +290,7 @@ There are two methods of creating a pull request for Free Code Camp:
|
||||
##### Method 1: Editing via your Local Fork _(Recommended)_
|
||||
|
||||
This is the recommended method. Read about [How to Setup and Maintain a Local
|
||||
Instance of Free Code Camp](#maintaining-your-fork).
|
||||
Instance of freeCodeCamp](#maintaining-your-fork).
|
||||
|
||||
1. Perform the maintenance step of rebasing `staging`.
|
||||
2. Ensure you are on the `staging` branch using `git status`:
|
||||
@ -347,7 +347,7 @@ for further information
|
||||
|
||||
3. Submit a [pull
|
||||
request](http://forum.freecodecamp.com/t/how-to-contribute-via-a-pull-request/19368)
|
||||
from your branch to Free Code Camp's `staging` branch.
|
||||
from your branch to freeCodeCamp's `staging` branch.
|
||||
|
||||
4. The title (also called the subject) of your PR should be descriptive of your
|
||||
changes and succinctly indicates what is being fixed.
|
||||
@ -370,7 +370,7 @@ for further information
|
||||
|
||||
### How We Review and Merge Pull Requests
|
||||
|
||||
Free Code Camp has a team of volunteer Issue Moderators. These Issue Moderators routinely go through open pull requests in a process called [Quality Assurance](https://en.wikipedia.org/wiki/Quality_assurance) (QA).
|
||||
freeCodeCamp has a team of volunteer Issue Moderators. These Issue Moderators routinely go through open pull requests in a process called [Quality Assurance](https://en.wikipedia.org/wiki/Quality_assurance) (QA).
|
||||
|
||||
1. If an Issue Moderator QA's a pull request and confirms that the new code does what it is supposed without seeming to introduce any new bugs, they will comment "LGTM" which means "Looks good to me."
|
||||
|
||||
@ -423,7 +423,7 @@ Be sure to post in the PR conversation that you have made the requested changes.
|
||||
- [Select Issues for Contributing Using
|
||||
Labels](http://forum.freecodecamp.com/t/free-code-camp-issue-labels/19556)
|
||||
|
||||
- [How to clone the FreeCodeCamp website on a Windows
|
||||
- [How to clone the freeCodeCamp website on a Windows
|
||||
pc](http://forum.freecodecamp.com/t/how-to-clone-and-setup-the-free-code-camp-website-on-a-windows-pc/19366)
|
||||
|
||||
- [How to log in to your local FCC site - using
|
||||
|
@ -1,6 +1,6 @@
|
||||
BSD 3-Clause License
|
||||
|
||||
Copyright (c) 2017, Free Code Camp.
|
||||
Copyright (c) 2017, freeCodeCamp.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
16
README.md
16
README.md
@ -1,15 +1,15 @@
|
||||

|
||||

|
||||
|
||||
[](https://waffle.io/freecodecamp/freecodecamp/metrics)
|
||||
|
||||
[](https://gitter.im/freecodecamp/freecodecamp?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
[](https://snyk.io/test/github/freecodecamp/freecodecamp)
|
||||
[](https://travis-ci.org/FreeCodeCamp/FreeCodeCamp)
|
||||
[](https://travis-ci.org/freeCodeCamp/freeCodeCamp)
|
||||
|
||||
Welcome to Free Code Camp's open source codebase and curriculum!
|
||||
Welcome to freeCodeCamp's open source codebase and curriculum!
|
||||
=======================
|
||||
|
||||
Free Code Camp is a friendly open source community where you learn to code and help nonprofits.
|
||||
freeCodeCamp is a friendly open source community where you learn to code and help nonprofits.
|
||||
|
||||
**We help our campers build job-worthy portfolios of real apps used by real people, while helping nonprofits.**
|
||||
|
||||
@ -43,7 +43,7 @@ For this certification, you'll work on **two projects from scratch** and then **
|
||||
|
||||
---
|
||||
|
||||
This code is running live at [FreeCodeCamp.com](https://www.freecodecamp.com). We also have [Gitter chat rooms](https://gitter.im/FreeCodeCamp/FreeCodeCamp), a [Medium publication](https://medium.freecodecamp.com), an [interactive forum](https://forum.freecodecamp.com), a [wiki knowledgebase](https://forum.freecodecamp.com/c/wiki), and even a [YouTube channel](https://youtube.com/freecodecamp).
|
||||
This code is running live at [freeCodeCamp.com](https://www.freecodecamp.com). We also have [Gitter chat rooms](https://gitter.im/FreeCodeCamp/FreeCodeCamp), a [Medium publication](https://medium.freecodecamp.com), an [interactive forum](https://forum.freecodecamp.com), a [wiki knowledgebase](https://forum.freecodecamp.com/c/wiki), and even a [YouTube channel](https://youtube.com/freecodecamp).
|
||||
|
||||
### [Join our community here](https://www.freecodecamp.com/signin).
|
||||
|
||||
@ -59,13 +59,13 @@ Do not file an issue until you have followed these steps:
|
||||
Contributing
|
||||
------------
|
||||
|
||||
We welcome pull requests from Free Code Camp campers (our students) and seasoned JavaScript developers alike! Please follow [these steps](CONTRIBUTING.md) to contribute.
|
||||
We welcome pull requests from freeCodeCamp campers (our students) and seasoned JavaScript developers alike! Please follow [these steps](CONTRIBUTING.md) to contribute.
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
Copyright (c) 2017 Free Code Camp.
|
||||
Copyright (c) 2017 freeCodeCamp.
|
||||
|
||||
The content of this repository bound by the following LICENSE(S)
|
||||
- The computer software is licensed under the [BSD-3-Clause](./LICENSE.md).
|
||||
- The curricular content as in the `./seed/challenges` or subdirectories and our wiki are licensed under the [CC-BY-SA-4.0](./LICENCE-Free-Code-Camp-Curriculum.md)
|
||||
- The curricular content as in the `./seed/challenges` or subdirectories and our wiki are licensed under the [CC-BY-SA-4.0](./LICENSE-freeCodeCamp-Curriculum.md)
|
||||
|
Reference in New Issue
Block a user