Skip to content

Commit dffd4c1

Browse files
authored
Merge pull request #13 from JuliaPluto/lf-license
add instructions for adding license
2 parents 9a1a1b5 + 4e7eeb0 commit dffd4c1

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
# 18.S191: Introduction to computational thinking for real-world problems
1+
# Computational thinking template
22

33
<p align="center"><a href="https://juliapluto.github.io/computational-thinking-template"> <b>Go to template website</b> :balloon:</a></p>
44

55
This repository is a template to build a website like the [Computational thinking course](https://computationalthinking.mit.edu/) tought at MIT.
66

77
**Note**: This is an early experiment and very WIP, use at your own risk.
8-

src/mod1_setup_website/basic_info.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,19 @@ for example
7171
```
7272

7373
To link a file to a track, you will need to add the track id, prefixed with `track_`, to the tags of the page. For example, to add a lesson to the julia track defined above, you would add the tag `track_julia` to the tags of that lesson file.
74+
75+
## License
76+
77+
Choosing an appropriate license is important to make your material properly reusable.
78+
79+
- For text, popular licenses are [Creative Commons](https://creativecommons.org/about/cclicenses/), for example [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
80+
81+
- For code, an [OSI open source license](https://opensource.org/licenses/) is recommended. For example [MIT](https://opensource.org/license/mit/) or [Apache 2.0](https://opensource.org/license/apache-2-0/) license.
82+
83+
To add the license, open the file `LICENSE.md` and replace the text
84+
85+
```
86+
<insert license for your material judge>
87+
```
88+
89+
with your license(s).

0 commit comments

Comments
 (0)