Skip to content
Snippets Groups Projects
Commit 4c594aa6 authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

Merge branch 'improve-readme' into 'develop'

Improve readme

See merge request R3-core/outreach/presentations-internal!39
parents bf739873 d4d7a528
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ In order to use the slide deck, you must have: ...@@ -8,7 +8,7 @@ In order to use the slide deck, you must have:
- **git**: For convenience, have your SSH key configured on git-r3lab. [Here](https://docs.gitlab.com/ee/gitlab-basics/create-your-ssh-keys.html) is how to do it. - **git**: For convenience, have your SSH key configured on git-r3lab. [Here](https://docs.gitlab.com/ee/gitlab-basics/create-your-ssh-keys.html) is how to do it.
- **git-lfs**: Installation instructions are [here](https://help.github.com/en/articles/installing-git-large-file-storage) - **git-lfs**: Installation instructions are [here](https://help.github.com/en/articles/installing-git-large-file-storage)
- **Python 3**: It is recommend to use a virtual environment - **Python 3**: It is recommend to use a virtual environment. Information on how to create a virtual environment is [here](https://virtualenvwrapper.readthedocs.io/en/latest/).
- **yarn**: Instructions are [here](https://yarnpkg.com/lang/en/docs/install) - **yarn**: Instructions are [here](https://yarnpkg.com/lang/en/docs/install)
## How to get started ## How to get started
...@@ -16,7 +16,7 @@ In order to use the slide deck, you must have: ...@@ -16,7 +16,7 @@ In order to use the slide deck, you must have:
- Fork this repository - Fork this repository
- Clone your fork - Clone your fork
```bash ```bash
$ git clone --recurse-submodules ssh://git@git-r3lab-server.uni.lu:8022/<yourUsername>/presentations.git $ git clone --recurse-submodules ssh://git@git-r3lab-server.uni.lu:8022/<yourUsername>/presentations-internal.git
``` ```
- If the `--recurse-submodules` flag has been omitted, run this command to check for the missing modules and update them: - If the `--recurse-submodules` flag has been omitted, run this command to check for the missing modules and update them:
```bash ```bash
...@@ -24,16 +24,26 @@ In order to use the slide deck, you must have: ...@@ -24,16 +24,26 @@ In order to use the slide deck, you must have:
``` ```
- Open a terminal and work on your presentation: - Open a terminal and work on your presentation:
```bash ```bash
$ cd presentations $ cd presentations-internal
$ pip install . $ pip install .
$ contribute --date="YYYY-MM-DD" --name="yourAwesomeTitle" $ contribute --date="YYYY-MM-DD" --name="yourAwesomeTitle"
``` ```
<img src="https://webdav-r3lab.uni.lu/public/R3lab/logos/warning.png" height="20px" width="20px"> Please create a branch from `develop` before starting to work on your presentation. You could name it `YYYY-MM-DD_yourAwesomeTitle`. ## <img src="https://webdav-r3lab.uni.lu/public/R3lab/logos/warning.png" height="20px" width="20px"> Tips
If you are done with making changes to your presentation, push them to your fork and open a merge request against the `develop` branch. - Please create a branch from `develop` before starting to work on your presentation. You could name it `YYYY-MM-DD_yourAwesomeTitle`.
- If you are done with making changes to your presentation, push them to your fork and open a merge request against the `develop` branch.
## <img src="https://webdav-r3lab.uni.lu/public/R3lab/logos/warning.png" height="20px" width="20px">Solving the error: `Fatal error: Unable to find local grunt.`
If you get a fatal error complaining about your local grunt installation, please make sure that you have add the `--recurse-submodules` flag when cloning, or that you ran the `git submodule update --init --recursive` command from within
the `presentations-internal` directory.
Please also make sure that you run the `contribute` command from the root of the `presentations-internal` directory.
## How to continue working on a presentation
## How to continue
For resuming your work on a presentation, you can either run the same contribute command:</br> For resuming your work on a presentation, you can either run the same contribute command:</br>
``` ```
$ contribute --date="YYYY-MM-DD" --name="yourAwesomeTitle" $ contribute --date="YYYY-MM-DD" --name="yourAwesomeTitle"
...@@ -46,13 +56,14 @@ If you are done with making changes to your presentation, push them to your fork ...@@ -46,13 +56,14 @@ If you are done with making changes to your presentation, push them to your fork
``` ```
## Adding a new slide/slides ## Adding a new slide/slides
Create a Markdown file with your slide(s) in `YYYY-MM-DD_yourAwesomeTitle/slides` and place it into `list.md` file at desired position: Create a Markdown file with your slide(s) in `YYYY-MM-DD_yourAwesomeTitle/slides` and place it into `list.md` file at desired position:
``` ```
[ [
{"filename": "index.md","attr": {}}, { "filename": "index.md" },
{"filename": "structure.md","attr": {}}, { "filename": "structure.md" },
{"filename": "myNewAwesomeSlide.md","attr": {}}, { "filename": "myNewAwesomeSlide.md" },
{"filename": "thanks.md","attr": {}} { "filename": "thanks.md" }
] ]
``` ```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment