-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added git-flow * Updated setup.sh * Updated script docs, version, changelog
- Loading branch information
Showing
3 changed files
with
24 additions
and
10 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
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,23 +1,31 @@ | ||
# FRS - fast Ruby setup | ||
|
||
Automation script for spin-up Ruby developer environment. Configure your developer stuff on Linux Ubuntu in minutes 🚀 | ||
Automation script for spin-up Ruby developer environment. Configure your developer stuff on Linux Ubuntu in minutes 🚀 Focus on development, not on developer tools! | ||
|
||
## Features | ||
|
||
* Installs & configures [git](https://git-scm.com), [git-flow](https://github.com/petervanderdoes/gitflow-avh) | ||
* Installs & configures [ZSH](https://www.zsh.org), [OhMyZsh](https://ohmyz.sh) and [Spaceship Promt](https://spaceship-prompt.sh) | ||
* Installs & configures [asdf](https://asdf-vm.com), [asdf Ruby plugin](https://github.com/asdf-vm/asdf-ruby) | ||
* Installs & configures latest [MRI Ruby](https://www.ruby-lang.org/en/downloads/releases) with default gems | ||
* Installs & configures [Visual Studio Code](https://code.visualstudio.com) | ||
* Configures git | ||
|
||
## Requirements/Preconditions | ||
|
||
1. Fresh Linux Ubuntu 20.04.3 LTS / Linux Ubuntu 21.10 | ||
1. Fresh `Linux Ubuntu 20.04 LTS` / `Linux Ubuntu 21.10` | ||
2. `wget` system dependency | ||
3. GitHub personal access token. Go to `Github/Settings/Developer settings/Personal access tokens` to create it. | ||
3. GitHub personal access token | ||
|
||
## Using | ||
|
||
### Create GitHub personal access token | ||
|
||
To create it go to: [`GitHub/Settings/Developer settings/Personal access tokens/New personal access token`](https://github.com/settings/tokens/new). Specify token name and next token scopes: | ||
|
||
* `repo` - full control of private repositories | ||
* `workflow` - update GitHub Action workflows | ||
* `admin:repo_hook` - full control of repository hooks | ||
|
||
### Install wget | ||
|
||
Open your terminal. Install `wget`: | ||
|
@@ -34,7 +42,7 @@ wget https://raw.githubusercontent.com/RubyWorkout/frs/master/setup.sh | |
|
||
### Run script | ||
|
||
Run Fast Ruby Setup script with your email, name (registered on github), github username and github personal access token as position arguments: | ||
Run Fast Ruby Setup script with your email, name (registered on github), github username and github personal access token as positional arguments: | ||
|
||
```bash | ||
. ./setup.sh [email protected] "John Doe" git_username git_token | ||
|
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