-
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.
Technical/Update documentation (#11)
* Updated script documentation * Updated version, changelog
- Loading branch information
Showing
2 changed files
with
17 additions
and
2 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,6 +1,6 @@ | ||
# FRS - fast Ruby setup | ||
|
||
Automation script for spin-up Ruby developer environment. Configure your developer stuff on Linux Ubuntu in minutes 🚀 Focus on development, not on developer tools! | ||
Automation script for spinning-up Ruby developer environment. Configure your developer stuff on Linux Ubuntu in minutes 🚀 Focus on development, not on developer tools! | ||
|
||
## Features | ||
|
||
|
@@ -18,6 +18,10 @@ Automation script for spin-up Ruby developer environment. Configure your develop | |
|
||
## Using | ||
|
||
### Get latest Ubuntu | ||
|
||
Download and install latest [Ubuntu Desktop](https://ubuntu.com/download/desktop). | ||
|
||
### 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: | ||
|
@@ -40,12 +44,17 @@ sudo apt-get install wget | |
wget https://raw.githubusercontent.com/RubyWorkout/frs/master/setup.sh | ||
``` | ||
|
||
### Allow executable permissions | ||
|
||
```bash | ||
chmod +x setup.sh | ||
``` | ||
|
||
### Run script | ||
|
||
Run Fast Ruby Setup script with your email, name (registered on github), github username and github personal access token as positional arguments: | ||
|
||
```bash | ||
chmod +x setup.sh | ||
. ./setup.sh [email protected] "John Doe" git_username git_token | ||
``` | ||
|
||
|