Skip to content

Commit 2cf7c59

Browse files
committed
first commit
0 parents  commit 2cf7c59

File tree

12 files changed

+175
-0
lines changed

12 files changed

+175
-0
lines changed

.canvas/lesson.md

Whitespace-only changes.

.gitignore

Whitespace-only changes.

CONTRIBUTING.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Contributing to Learn.co Curriculum
2+
3+
We're really exited 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 to
6+
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 the
13+
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 embracing an
32+
open-source contribution model, our goal is for the curriculum on Learn to
33+
become, in time, the best educational content the world has ever seen.
34+
35+
We need help from the community of Learners to maintain and improve the
36+
educational content. Everything from fixing typos, to correcting out-dated
37+
information, to improving exposition, to adding better examples, to fixing
38+
tests—all contributions to making the curriculum more effective are welcome.

LICENSE.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Learn.co Educational Content License
2+
3+
Copyright (c) 2021 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 the
7+
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 not
21+
agree to any or all of the terms of the Educational Content License, you are
22+
prohibited from accessing, reviewing or using in any way the Educational
23+
Content.

Pipfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
pytest = "*"
8+
9+
[requires]
10+
python_version = "3.10"

Pipfile.lock

Lines changed: 100 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Whitespace-only changes.

lib/generate_log.py

Whitespace-only changes.

pytest.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[pytest]
2+
minversion = 6.0
3+
addopts = -ra -q
4+
testpaths = testing

requirements.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)