Skip to content

Commit aafb18f

Browse files
committed
Added readme
1 parent 91c9b35 commit aafb18f

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby 3.3.3

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## INSTALATION
2+
3+
### Install asdf
4+
```
5+
sudo apt-get install git-core zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev
6+
git clone https://github.com/excid3/asdf.git ~/.asdf
7+
cd
8+
ls
9+
echo '. "$HOME/.asdf/asdf.sh"' >> ~/.bashrc
10+
echo '. "$HOME/.asdf/completions/asdf.bash"' >> ~/.bashrc
11+
echo 'legacy_version_file = yes' >> ~/.asdfrc
12+
echo 'export EDITOR="code --wait"' >> ~/.bashrc
13+
exec $SHELL
14+
```
15+
16+
### Install ruby and project
17+
```
18+
asdf plugin list all
19+
asdf plugin add ruby https://github.com/asdf-vm/asdf-ruby.git
20+
asdf install ruby 3.3.3
21+
asdf list
22+
git clone <repository>
23+
cd <repository>
24+
asdf local ruby 3.3.3
25+
```
26+
27+
### Prepare project
28+
```
29+
gem install bundler
30+
bundle install
31+
bundle exec jekyll s
32+
```

0 commit comments

Comments
 (0)