You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+48-42Lines changed: 48 additions & 42 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,50 +36,56 @@ This command generates static content into the `build` directory and can be serv
36
36
37
37
## Deployment
38
38
39
-
The documentation is deployed using [Read The Docs](https://about.readthedocs.com/).
39
+
The documentation is deployed using [Read The Docs](https://about.readthedocs.com/).
40
40
The [renku project](https://app.readthedocs.org/projects/renku/) on Read the Docs
41
41
builds and deploys when changes are made in the repo.
42
42
43
43
## Notes
44
44
45
-
* When adding an image to a page, put it in the same folder as the page and reference it using a relative path (e.g. `./image.png`). By default, the image will fill the whole page's width. If that's what you want, you're done. Otherwise, you can wrap the image in a container with a custom width based on your desired size, e.g.:
46
-
```md
47
-
<p class="image-container-s">
48
-

49
-
</p>
50
-
```
51
-
The available container sizes are `image-container-s` (55% width), `image-container-m` (70% width), and `image-container-l` (85% width).
52
-
* Image properties that are controllable by CSS can be modified in the documentation CSS file at `docs/src/css/custom.css`. Currently, we use it to add shadows to all images and to define the container sizes for images:
text-align: center; /* Center the image horizontally when its width is narrower than the max-width*/
62
-
}
63
-
64
-
.image-container-s {
65
-
max-width: 55%;
66
-
}
67
-
68
-
.image-container-m {
69
-
max-width: 70%;
70
-
}
71
-
72
-
.image-container-l {
73
-
max-width: 85%;
74
-
}
75
-
```
76
-
* When adding avideo to a page, put it in the same folder as the page. You then need to import it in the markdown file using its relative path and put the imported name in the `src` attribute of the `video` tag. For example:
77
-
```md
78
-
import video10 from './video-10.mp4';
79
-
80
-
<video controls width="100%" src={video10} />
81
-
```
82
-
* When linking to other documentation pages, always use relative URL links (e.g. `../sessions/guides/create-environment-with-custom-packages-installed`) instead of absolute links (e.g. `/docs/users/sessions/guides/create-environment-with-custom-packages-installed`) or relative file paths (e.g. `../60-sessions/guides/20-create-environment-with-custom-packages-installed.md`).
83
-
Always use URL links instead of file paths for links. Docusaurus converts file paths into URL links by removing number prefixes and the .md extension. To find the correct URL link, open the corresponding page in your browser, copy the path from the address bar, and adjust it to be relative to the current page.
84
-
85
-
* If you add an `index.md` file to a directory, never add a prefix to it (e.g. `10-index.md`). Docusaurus treats `index.md` file specially, so it shouldn't have any prefix in its name. Prefixes are only used for other files in the directory to control their order.
45
+
- When adding an image to a page, put it in the same folder as the page and reference it using a relative path (e.g. `./image.png`). By default, the image will fill the whole page's width. If that's what you want, you're done. Otherwise, you can wrap the image in a container with a custom width based on your desired size, e.g.:
46
+
```md
47
+
<pclass="image-container-s">
48
+

49
+
</p>
50
+
```
51
+
The available container sizes are `image-container-s` (55% width), `image-container-m` (70% width), and `image-container-l` (85% width).
52
+
- Image properties that are controllable by CSS can be modified in the documentation CSS file at `docs/src/css/custom.css`. Currently, we use it to add shadows to all images and to define the container sizes for images:
53
+
54
+
```css
55
+
img {
56
+
filter: drop-shadow(010px16pxrgba(0, 0, 0, 0.25))
57
+
drop-shadow(02px4pxrgba(0, 0, 0, 0.15));
58
+
}
59
+
60
+
.image-container-s,
61
+
.image-container-m,
62
+
.image-container-l {
63
+
margin: auto;
64
+
text-align: center; /* Center the image horizontally when its width is narrower than the max-width*/
65
+
}
66
+
67
+
.image-container-s {
68
+
max-width: 55%;
69
+
}
70
+
71
+
.image-container-m {
72
+
max-width: 70%;
73
+
}
74
+
75
+
.image-container-l {
76
+
max-width: 85%;
77
+
}
78
+
```
79
+
80
+
- When adding a video to a page, put it in the same folder as the page. You then need to import it in the markdown file using its relative path and put the imported name in the `src` attribute of the `video` tag. For example:
81
+
82
+
```md
83
+
import video10 from './video-10.mp4';
84
+
85
+
<videocontrolswidth="100%"src={video10} />
86
+
```
87
+
88
+
- When linking to other documentation pages, always use relative URL links (e.g. `../sessions/guides/create-environment-with-custom-packages-installed`) instead of absolute links (e.g. `/docs/users/sessions/guides/create-environment-with-custom-packages-installed`) or relative file paths (e.g. `../60-sessions/guides/20-create-environment-with-custom-packages-installed.md`).
89
+
Always use URL links instead of file paths for links. Docusaurus converts file paths into URL links by removing number prefixes and the .md extension. To find the correct URL link, open the corresponding page in your browser, copy the path from the address bar, and adjust it to be relative to the current page.
90
+
91
+
- If you add an `index.md` file to a directory, never add a prefix to it (e.g. `10-index.md`). Docusaurus treats `index.md` file specially, so it shouldn't have any prefix in its name. Prefixes are only used for other files in the directory to control their order.
Copy file name to clipboardExpand all lines: docs/docs/10-users/10-users.md
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,6 @@ Renku is an **open-source platform for researchers and scientists to connect dat
9
9
10
10
## How to use Renku docs
11
11
12
-
13
12
<pclass="text-align: center">
14
13

15
14
[**First Steps Tutorial**](/docs/users/getting-started/): Want to try it out? [**Create your account**](/docs/users/getting-started/tutorial-start) and follow our hands-on tutorial!
@@ -21,34 +20,33 @@ Renku is an **open-source platform for researchers and scientists to connect dat
21
20
[**Projects**](/docs/users/projects/projects/) in Renku may contain [**Data**](/docs/users/data/data/), [**Code**](/docs/users/code/code-repository) and [**Sessions**](/docs/users/sessions/environment/) to foster [**Collaboration**](/docs/users/collaboration/). Check each individual building block for understanding the possibilities that Renku offers.
22
21
</p>
23
22
24
-
___
23
+
---
25
24
26
25
<pclass="text-align: center">
27
26

28
27
[**Use Cases**](/docs/users/use-cases/) Learn more about how Renku is used in the broader community.
29
28
</p>
30
29
31
-
___
30
+
---
32
31
33
32
<pclass="text-align: center">
34
33

35
34
[**Knowledge Base**](/docs/users/knowledge-base/fair-open-science/) Curiosity about how it works? [Any doubts](/docs/users/knowledge-base/faq/)? Join our channels to keep in touch with us.
36
35
</p>
37
36
38
-
___
37
+
---
39
38
40
39
<pclass="text-align: center">
41
40

42
41
[**Renku Legacy:**](/docs/users/migrate-v1-v2/) Guidelines on how to migrate your code repositories from Legacy Renkulab Gitlab to your own code repository provider, and keep
|**Unified Research**<p>Connect your entire research workflow in one place, and collaborate across specialties without technical barriers.</p> |**Computing Courses made easy** <p>Help your students focus on the material, not getting lost during setup. Ideal for project-based coursework and time-sensitive workshops.</p> |**Seamless Events** <p>Focus on innovation, not setup and infrastructure. Provide a consistent environment for all teams, and get participants coding and collaborating right away.</p> |
|**Unified Research** <p>Connect your entire research workflow in one place, and collaborate across specialties without technical barriers.</p> |**Computing Courses made easy** <p>Help your students focus on the material, not getting lost during setup. Ideal for project-based coursework and time-sensitive workshops.</p> |**Seamless Events** <p>Focus on innovation, not setup and infrastructure. Provide a consistent environment for all teams, and get participants coding and collaborating right away.</p> |
52
50
53
51
## What's new - Check out our latest blog posts:
54
52
@@ -59,7 +57,8 @@ Renku is an **open-source platform for researchers and scientists to connect dat
59
57
<p>We've combined Renku's super-simple sessions with the power of supercomputing!</p>
Copy file name to clipboardExpand all lines: docs/docs/10-users/20-getting-started/30-connect-data.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,6 @@ Note that the description in Zenodo of this dataset is automatically imported as
16
16
17
17
:::
18
18
19
-
20
19
## Connect a Storage Space to save your work (optional)
21
20
22
21
The data connector in the previous step is read only. If you would like to be able to save the work you do in your Renku session, add a data connector for a storage where you'd like to save that work. For example, you might use a Switch Drive or polybox folder, or an S3 bucket.
Copy file name to clipboardExpand all lines: docs/docs/10-users/20-getting-started/50-launch-session.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,10 @@
5
5
To run your code and analyze data on RenkuLab, first decide what kind of session environment you would like by creating a session launcher.
6
6
7
7
1. In the **Sessions** section of your project page, click on **+**.
8
-
2. In the **Global environment** tab, scroll down and select **Python Data Science - Jupyter**. This will give you a pre-configured environment with python and data science packages pre-installed. If you need to install other packages, you can install any necessary packages using the terminal. For a detailed guide for how to install packages, see [How to install packages on-the-fly in your session](../sessions/guides/environments/install-packages-on-the-fly-in-your-session). However, the packages you install on-the-fly in the session will not be shared with other people working with your Renku project. To ensure the adequate dependencies are installed in your environment, follow step 4.3 to create a custom environment from code.
8
+
2. In the **Global environment** tab, scroll down and select **Python Data Science - Jupyter**. This will give you a pre-configured environment with python and data science packages pre-installed. If you need to install other packages, you can install any necessary packages using the terminal. For a detailed guide for how to install packages, see [How to install packages on-the-fly in your session](../sessions/guides/environments/install-packages-on-the-fly-in-your-session). However, the packages you install on-the-fly in the session will not be shared with other people working with your Renku project. To ensure the adequate dependencies are installed in your environment, follow step 4.3 to create a custom environment from code.
9
9
3. Click **Next**.
10
10
4. Choose the compute resources for your session based on your project’s needs in the drop-down menu, and select the amount of disk space.
11
11
12
-
13
12

14
13
15
14
:::info
@@ -19,6 +18,7 @@ You can have multiple Session Launchers in your project that run different kinds
19
18
:::info
20
19
Do you need more resources than those available in RenkuLab’s public resource classes? [Contact us!](mailto:hello@renku.io) We can configure a custom resource pool for your team or class.
21
20
:::
21
+
22
22
## Launch a Session
23
23
24
24
Click on the **Launch** button in your new Session Launcher to start a session.
Copy file name to clipboardExpand all lines: docs/docs/10-users/20-getting-started/70-conclusion.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
# Next Steps
2
2
3
-
4
3
🎉 Congratulations! You have successfully created a Renku project, connected data and code, launched a session, and shared your project with collaborators.
0 commit comments