Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: opensource jam #34

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions ru/jam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Yandex Open Source Jam 2024

1\. Установка [git](https://git-scm.com/downloads)

{% list tabs %}

- macOS

```
brew install git
```
- Linux/Unix

```
apt-get install git
```
- Windows

```
winget install --id Git.Git -e --source winget
```

{% endlist %}

2\. Установка [GitHub CLI](https://github.com/cli/cli)

{% list tabs %}

- macOS

```
brew install gh
```
- Linux/Unix

```
(type -p wget >/dev/null || (sudo apt update && sudo apt-get install wget -y)) \
&& sudo mkdir -p -m 755 /etc/apt/keyrings \
&& wget -qO- https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \
&& sudo chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
&& sudo apt update \
&& sudo apt install gh -y
```
- Windows

```
winget install --id GitHub.cli
```

{% endlist %}

3\. Ссылка на [воркшоп](https://github.com/diplodoc-platform/notconf-steps)
3 changes: 3 additions & 0 deletions ru/toc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,6 @@ items:
items:
- name: Старший разработчик
href: vacancy.md
- name: Yandex Open Source Jam 2024
hidden: true
href: jam.md
Loading