Skip to content

Commit 004f40a

Browse files
committed
source commit: eb3c21c
0 parents  commit 004f40a

15 files changed

+2033
-0
lines changed

CODE_OF_CONDUCT.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: "Contributor Code of Conduct"
3+
---
4+
5+
As contributors and maintainers of this project,
6+
we pledge to follow the [The Carpentries Code of Conduct][coc].
7+
8+
Instances of abusive, harassing, or otherwise unacceptable behavior
9+
may be reported by following our [reporting guidelines][coc-reporting].
10+
11+
12+
[coc-reporting]: https://docs.carpentries.org/topic_folders/policies/incident-reporting.html
13+
[coc]: https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html

LICENSE.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
---
2+
title: "Licenses"
3+
---
4+
5+
## Instructional Material
6+
7+
All Software Carpentry, Data Carpentry, and Library Carpentry instructional material is
8+
made available under the [Creative Commons Attribution
9+
license][cc-by-human]. The following is a human-readable summary of
10+
(and not a substitute for) the [full legal text of the CC BY 4.0
11+
license][cc-by-legal].
12+
13+
You are free:
14+
15+
* to **Share**---copy and redistribute the material in any medium or format
16+
* to **Adapt**---remix, transform, and build upon the material
17+
18+
for any purpose, even commercially.
19+
20+
The licensor cannot revoke these freedoms as long as you follow the
21+
license terms.
22+
23+
Under the following terms:
24+
25+
* **Attribution**---You must give appropriate credit (mentioning that
26+
your work is derived from work that is Copyright © Software
27+
Carpentry and, where practical, linking to
28+
http://software-carpentry.org/), provide a [link to the
29+
license][cc-by-human], and indicate if changes were made. You may do
30+
so in any reasonable manner, but not in any way that suggests the
31+
licensor endorses you or your use.
32+
33+
**No additional restrictions**---You may not apply legal terms or
34+
technological measures that legally restrict others from doing
35+
anything the license permits. With the understanding that:
36+
37+
Notices:
38+
39+
* You do not have to comply with the license for elements of the
40+
material in the public domain or where your use is permitted by an
41+
applicable exception or limitation.
42+
* No warranties are given. The license may not give you all of the
43+
permissions necessary for your intended use. For example, other
44+
rights such as publicity, privacy, or moral rights may limit how you
45+
use the material.
46+
47+
## Software
48+
49+
Except where otherwise noted, the example programs and other software
50+
provided by Software Carpentry and Data Carpentry are made available under the
51+
[OSI][osi]-approved
52+
[MIT license][mit-license].
53+
54+
Permission is hereby granted, free of charge, to any person obtaining
55+
a copy of this software and associated documentation files (the
56+
"Software"), to deal in the Software without restriction, including
57+
without limitation the rights to use, copy, modify, merge, publish,
58+
distribute, sublicense, and/or sell copies of the Software, and to
59+
permit persons to whom the Software is furnished to do so, subject to
60+
the following conditions:
61+
62+
The above copyright notice and this permission notice shall be
63+
included in all copies or substantial portions of the Software.
64+
65+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
66+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
67+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
68+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
69+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
70+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
71+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
72+
73+
## Trademark
74+
75+
"Software Carpentry" and "Data Carpentry" and their respective logos
76+
are registered trademarks of [Community Initiatives][ci].
77+
78+
[cc-by-human]: https://creativecommons.org/licenses/by/4.0/
79+
[cc-by-legal]: https://creativecommons.org/licenses/by/4.0/legalcode
80+
[mit-license]: https://opensource.org/licenses/mit-license.html
81+
[ci]: http://communityin.org/
82+
[osi]: https://opensource.org

config.yaml

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
#------------------------------------------------------------
2+
# Values for this lesson.
3+
#------------------------------------------------------------
4+
5+
# Which carpentry is this (swc, dc, lc, or cp)?
6+
# swc: Software Carpentry
7+
# dc: Data Carpentry
8+
# lc: Library Carpentry
9+
# cp: Carpentries (to use for instructor training for instance)
10+
# incubator: The Carpentries Incubator
11+
carpentry: 'incubator'
12+
13+
# Overall title for pages.
14+
title: 'Making Sourdough Cinnamon Rolls'
15+
16+
# Date the lesson was created (YYYY-MM-DD, this is empty by default)
17+
created: ~
18+
19+
# Comma-separated list of keywords for the lesson
20+
keywords: 'software, data, lesson, The Carpentries'
21+
22+
# Life cycle stage of the lesson
23+
# possible values: pre-alpha, alpha, beta, stable
24+
life_cycle: 'pre-alpha'
25+
26+
# License of the lesson
27+
license: 'CC-BY 4.0'
28+
29+
# Link to the source repository for this lesson
30+
source: 'https://github.com/carpentries/workbench-template-rmd'
31+
32+
# Default branch of your lesson
33+
branch: 'main'
34+
35+
# Who to contact if there are any issues
36+
37+
38+
# Navigation ------------------------------------------------
39+
#
40+
# Use the following menu items to specify the order of
41+
# individual pages in each dropdown section. Leave blank to
42+
# include all pages in the folder.
43+
#
44+
# Example -------------
45+
#
46+
# episodes:
47+
# - introduction.md
48+
# - first-steps.md
49+
#
50+
# learners:
51+
# - setup.md
52+
#
53+
# instructors:
54+
# - instructor-notes.md
55+
#
56+
# profiles:
57+
# - one-learner.md
58+
# - another-learner.md
59+
60+
# Order of episodes in your lesson
61+
episodes:
62+
- recipe_intro.md
63+
- recipe_ingredients.Rmd
64+
- recipe_instructions.Rmd
65+
66+
# Information for Learners
67+
learners:
68+
69+
# Information for Instructors
70+
instructors:
71+
72+
# Learner Profiles
73+
profiles:
74+
75+
# Customisation ---------------------------------------------
76+
#
77+
# This space below is where custom yaml items (e.g. pinning
78+
# sandpaper and varnish versions) should live
79+
80+

fig/cinnamon-rolls-in-the-oven.jpg

1.64 MB
Loading
2.75 MB
Loading

index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
site: sandpaper::sandpaper_site
3+
---
4+
5+
This is a new lesson built with [The Carpentries Workbench][workbench].
6+
7+
8+
[workbench]: https://carpentries.github.io/sandpaper-docs
9+

instructor-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: FIXME
3+
---
4+
5+
This is a placeholder file. Please add content here.

learner-profiles.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: FIXME
3+
---
4+
5+
This is a placeholder file. Please add content here.

links.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!--
2+
Place links that you need to refer to multiple times across pages here. Delete
3+
any links that you are not going to use.
4+
-->
5+
6+
[pandoc]: https://pandoc.org/MANUAL.html
7+
[r-markdown]: https://rmarkdown.rstudio.com/
8+
[rstudio]: https://www.rstudio.com/
9+
[carpentries-workbench]: https://carpentries.github.io/sandpaper-docs/
10+

md5sum.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
"file" "checksum" "built" "date"
2+
"CODE_OF_CONDUCT.md" "c93c83c630db2fe2462240bf72552548" "site/built/CODE_OF_CONDUCT.md" "2024-07-08"
3+
"LICENSE.md" "afaf427b4223952624dcb6d8ded53ec0" "site/built/LICENSE.md" "2024-07-08"
4+
"config.yaml" "372c39767f222648a59fa3adac187475" "site/built/config.yaml" "2024-07-08"
5+
"index.md" "a02c9c785ed98ddd84fe3d34ddb12fcd" "site/built/index.md" "2024-07-08"
6+
"links.md" "8184cf4149eafbf03ce8da8ff0778c14" "site/built/links.md" "2024-07-08"
7+
"episodes/recipe_intro.md" "c48fa96a7b9f29772754d3c08062a30a" "site/built/recipe_intro.md" "2024-07-08"
8+
"episodes/recipe_ingredients.Rmd" "d60fd03cf77e5a6b7fd18f904a77ac9e" "site/built/recipe_ingredients.md" "2024-07-08"
9+
"episodes/recipe_instructions.Rmd" "b5125d841d67e94d1b0c8cb90393e6db" "site/built/recipe_instructions.md" "2024-07-08"
10+
"instructors/instructor-notes.md" "60b93493cf1da06dfd63255d73854461" "site/built/instructor-notes.md" "2024-07-08"
11+
"learners/setup.md" "05880608188b9ec69b4fa3a42dfaed47" "site/built/setup.md" "2024-07-08"
12+
"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2024-07-08"
13+
"renv/profiles/lesson-requirements/renv.lock" "d5018f054b0b746cceaf77ed9128a5e7" "site/built/renv.lock" "2024-07-08"

0 commit comments

Comments
 (0)