-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from esciencecenter-digital-skills/NEBULA-update
Nebula update
- Loading branch information
Showing
90 changed files
with
542 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | ||
|
||
name: Clean install and build check (no deploy) with dummy content | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout NEBULA | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: esciencecenter-digital-skills/NEBULA | ||
ref: v0.4.0 | ||
path: ./NEBULA | ||
|
||
- name: Checkout content | ||
uses: actions/checkout@v4 | ||
with: | ||
path: ./content | ||
|
||
- name: Set content path environment variable | ||
run: echo "CONTENT_PATH=${PWD}/content" >> $GITHUB_ENV | ||
|
||
- name: Run CI on Node.js 18.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
cache: 'npm' | ||
cache-dependency-path: './NEBULA/package-lock.json' | ||
- run: | | ||
cd NEBULA | ||
npm ci | ||
- run: | | ||
cd NEBULA | ||
npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,19 @@ | ||
name: Deploy to gh-pages | ||
|
||
on: | ||
push: | ||
[release, workflow_dispatch] | ||
env: | ||
NUXT_APP_CDN_URL: https://esciencecenter-digital-skills.github.io/research-software-support | ||
jobs: | ||
get_content_config: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout content | ||
uses: actions/checkout@v4 | ||
with: | ||
sparse-checkout: config.json | ||
sparse-checkout-cone-mode: false | ||
path: ./content_config/ | ||
|
||
- name: Show config path | ||
run: | | ||
pwd | ||
ls -la | ||
cd content_config | ||
ls -la | ||
cd - | ||
- name: Upload content config file | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: content_config | ||
path: ./content_config/config.json | ||
|
||
deploy_with_NEBULA: | ||
needs: get_content_config | ||
permissions: | ||
contents: write | ||
uses: esciencecenter-digital-skills/NEBULA/.github/workflows/deploy.yml@main | ||
uses: esciencecenter-digital-skills/NEBULA/.github/workflows/deploy.yml@v0.4.0 | ||
with: | ||
config_artifact_name: content_config | ||
nebula_ref: main | ||
|
||
|
||
content_organization: esciencecenter-digital-skills | ||
content_repository: research-software-support | ||
content_ref: NEBULA-update | ||
base_url: research-software-support | ||
nebula_ref: v0.4.0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: About | ||
--- | ||
|
||
## About the Research Software Support | ||
In the Research Software Support modules we want to provide a comprehensive overview of the different aspects of research software support. | ||
|
||
## Target audience | ||
|
||
The target audience for this material is University management and support staff. | ||
University management taking part in courses involving these modules may be involved in creating university policy around research software. | ||
The University support staff targeted are not themselves researchers or software engineers, but they support researchers and research software engineers in creating research software. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
title: Contribute | ||
--- | ||
|
||
## Contributing to the Research Software Support | ||
|
||
In the Research Software Support modules we want to provide a comprehensive overview of the different aspects of research software support. | ||
This, as you can imagine, is no easy feat, and we need your help! | ||
So first of all, thank you very much for your interest in contributing to this project. | ||
|
||
### What can I do? | ||
|
||
Go to our github repository by clicking on the GitHub logo in the top right of this website. | ||
|
||
* Contribute to the content discussion in the [chapter issues](https://github.com/esciencecenter-digital-skills/research-software-support/issues?q=is%3Aissue+is%3Aopen+label%3Astory), e.g. by listing good resources for information. | ||
* [Author a lesson](#elements-of-a-module), e.g. by: | ||
* [Creating slides](#slides) | ||
* [Designing an exercise](#exercises) | ||
* [Curating online resources](#online-resources) | ||
* Review a lesson module; both by looking at [open PRs](https://github.com/esciencecenter-digital-skills/research-software-support/pulls), as well as flagging issues for improvement in the [existing content](https://esciencecenter-digital-skills.github.io/research-software-support/). | ||
* [Provide feedback](https://github.com/esciencecenter-digital-skills/research-software-support/issues) on the different subjects covered: what did we miss? Should something be restructured? |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
--- | ||
title: Using cffinit to create `CITATION.cff` | ||
type: exercise | ||
order: 5 | ||
--- | ||
|
||
## Using cffinit to create `CITATION.cff` | ||
|
||
This tutorial demonstrates the use of CFFinit, to create a `CITATION.cff` file. You can find the tool at [citation-file-format.github.io/cff-initializer-javascript](https://citation-file-format.github.io/cff-initializer-javascript/#/). | ||
|
||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
--- | ||
title: Reading material | ||
type: reading | ||
order: 7 | ||
--- | ||
|
||
## Links for further reading | ||
|
||
- The FORCE11 [Software Citation Principles](https://force11.org/info/software-citation-principles-published-2016/) describe the rationale behind software citation. | ||
- An interactive guide on software citation can be found at [citesoftware.org](https://cfa-library.github.io/citesoftware.org/). | ||
- An extensive (non-interactive) guide can be found at [cite.research-software.org](https://cite.research-software.org/). | ||
- To provide citation information [CITATION.cff](https://citation-file-format.github.io/) files can be created using the online [CFFInit](https://citation-file-format.github.io/cff-initializer-javascript/#/) tool. | ||
- [Shouldacite](https://mr-c.github.io/shouldacite/) helps you decide when to cite software in your publications. | ||
|
||
::: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
id: 0 | ||
trl: medium | ||
category: Publishing & Citing | ||
title: Software citation | ||
author: eScience Center | ||
thumbnail: "thumbnail-citation.jpg" | ||
visibility: visible | ||
--- | ||
|
||
[thumbnail-citation](https://unsplash.com/photos/difficult-roads-lead-to-beautiful-destinations-desk-decor-z1d-LP8sjuI?utm_content=creditShareLink&utm_medium=referral&utm_source=unsplash) | ||
|
||
Photo by <a href="https://unsplash.com/@helloimnik?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Nik</a> on <a href="https://unsplash.com/photos/difficult-roads-lead-to-beautiful-destinations-desk-decor-z1d-LP8sjuI?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Unsplash</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Learning objectives | ||
type: info | ||
order: 0 | ||
--- | ||
|
||
Learning objectives for the Citation module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Learning objectives | ||
type: info | ||
order: 0 | ||
--- | ||
|
||
Learning objectives for the FAIR software module |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Learning objectives | ||
type: info | ||
order: 0 | ||
--- | ||
|
||
Learning objectives for the FAIR software module |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
--- | ||
title: What is FAIR? | ||
type: exercise | ||
order: 2 | ||
--- | ||
|
||
# Exercise 1 | ||
|
||
## What is FAIR? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
--- | ||
title: Mapping the principles | ||
type: exercise | ||
order: 3 | ||
--- | ||
|
||
# Exercise 2 | ||
|
||
## Mapping the principles | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
# Exercise 2 | ||
--- | ||
title: FAIR in practice | ||
type: exercise | ||
order: 4 | ||
--- | ||
|
||
# Exercise 3 | ||
|
||
## FAIR in practice | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
id: 3 | ||
trl: medium | ||
category: Getting started | ||
title: FAIR software | ||
author: eScience Center | ||
thumbnail: "thumbnail-fair-software.jpg" | ||
visibility: visible | ||
--- | ||
|
||
[thumbnail-fair-software](https://unsplash.com/photos/three-men-sitting-while-using-laptops-and-watching-man-beside-whiteboard-wD1LRb9OeEo?utm_content=creditShareLink&utm_medium=referral&utm_source=unsplash) | ||
|
||
Photo by <a href="https://unsplash.com/@austindistel?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Austin Distel</a> on <a href="https://unsplash.com/photos/three-men-sitting-while-using-laptops-and-watching-man-beside-whiteboard-wD1LRb9OeEo?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Unsplash</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Learning objectives | ||
type: info | ||
order: 0 | ||
--- | ||
|
||
Learning objectives for the FAIR software module |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
--- | ||
title: Reading material | ||
type: reading | ||
order: 5 | ||
--- | ||
|
||
# Reading material | ||
|
||
## FAIR software | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
--- | ||
title: FAIR software | ||
type: slides | ||
order: 1 | ||
--- | ||
|
||
--- | ||
|
||
<!-- .slide: data-state="title" --> | ||
|
File renamed without changes.
Oops, something went wrong.