Skip to content

Commit

Permalink
feat: opensource jam
Browse files Browse the repository at this point in the history
  • Loading branch information
martyanovandrey committed Apr 22, 2024
1 parent 3526b07 commit d6b0813
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
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

0 comments on commit d6b0813

Please sign in to comment.