Skip to content

Commit 27bb33a

Browse files
initial commit with learn-create
0 parents  commit 27bb33a

File tree

5 files changed

+120
-0
lines changed

5 files changed

+120
-0
lines changed

.gitignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Created by https://www.gitignore.io/api/node
2+
3+
.DS_Store
4+
5+
### Node ###
6+
# Logs
7+
logs
8+
*.log
9+
npm-debug.log*
10+
11+
# Runtime data
12+
pids
13+
*.pid
14+
*.seed
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Compiled binary addons (http://nodejs.org/api/addons.html)
20+
build/Release
21+
22+
# Dependency directories
23+
node_modules
24+
jspm_packages
25+
26+
# Optional npm cache directory
27+
.npm
28+
29+
# Optional REPL history
30+
.node_repl_history
31+
32+
# Learn-specific .results.json
33+
.results.json

.learn

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
tags:
2+
- undefined
3+
languages:
4+
- undefined
5+
resources: 0

CONTRIBUTING.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Contributing to Learn.co Curriculum
2+
3+
We're really excited that you're about to contribute to the [open
4+
curriculum](https://learn.co/content-license) on [Learn.co](https://learn.co).
5+
If this is your first time contributing, please continue reading to learn how
6+
to make the most meaningful and useful impact possible.
7+
8+
## Raising an Issue to Encourage a Contribution
9+
10+
If you notice a problem with the curriculum that you believe needs improvement
11+
but you're unable to make the change yourself, you should raise a Github issue
12+
containing a clear description of the problem. Include relevant snippets of
13+
the content and/or screenshots if applicable. Curriculum owners regularly review
14+
issue lists and your issue will be prioritized and addressed as appropriate.
15+
16+
## Submitting a Pull Request to Suggest an Improvement
17+
18+
If you see an opportunity for improvement and can make the change yourself go
19+
ahead and use a typical git workflow to make it happen:
20+
21+
* Fork this curriculum repository
22+
* Make the change on your fork, with descriptive commits in the standard format
23+
* Open a Pull Request against this repo
24+
25+
A curriculum owner will review your change and approve or comment on it in due
26+
course.
27+
28+
# Why Contribute?
29+
30+
Curriculum on Learn is publicly and freely available under Learn's
31+
[Educational Content License](https://learn.co/content-license). By
32+
embracing an open-source contribution model, our goal is for the curriculum
33+
on Learn to become, in time, the best educational content the world has
34+
ever seen.
35+
36+
We need help from the community of Learners to maintain and improve the
37+
educational content. Everything from fixing typos, to correcting
38+
out-dated information, to improving exposition, to adding better examples,
39+
to fixing tests—all contributions to making the curriculum more effective are
40+
welcome.

LICENSE.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Learn.co Educational Content License
2+
3+
Copyright (c) 2018 Flatiron School, Inc
4+
5+
The Flatiron School, Inc. owns this Educational Content. However, the Flatiron
6+
School supports the development and availability of educational materials in
7+
the public domain. Therefore, the Flatiron School grants Users of the Flatiron
8+
Educational Content set forth in this repository certain rights to reuse, build
9+
upon and share such Educational Content subject to the terms of the Educational
10+
Content License set forth [here](http://learn.co/content-license)
11+
(http://learn.co/content-license). You must read carefully the terms and
12+
conditions contained in the Educational Content License as such terms govern
13+
access to and use of the Educational Content.
14+
15+
Flatiron School is willing to allow you access to and use of the Educational
16+
Content only on the condition that you accept all of the terms and conditions
17+
contained in the Educational Content License set forth
18+
[here](http://learn.co/content-license) (http://learn.co/content-license). By
19+
accessing and/or using the Educational Content, you are agreeing to all of the
20+
terms and conditions contained in the Educational Content License. If you do
21+
not agree to any or all of the terms of the Educational Content License, you
22+
are prohibited from accessing, reviewing or using in any way the Educational
23+
Content.

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Title
2+
3+
## Problem Statement
4+
5+
## Objectives
6+
7+
### Objective 1
8+
9+
Content moving student to objective 1
10+
11+
### Objective 2
12+
13+
Content moving student to objective 2
14+
15+
#### Key Terms (if applicable)
16+
17+
#### Resources (if applicable)
18+
19+
### Conclusion

0 commit comments

Comments
 (0)