-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "build website docker image; a few build refactors"
This reverts commit dedcdeb.
- Loading branch information
Showing
10 changed files
with
40 additions
and
162 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,5 +1,21 @@ | ||
#!/bin/bash | ||
set -eux | ||
cd "`dirname "$0"`" | ||
./setup/rvm.sh | ||
|
||
# installing compass is a huge pain, but replacing it is a huger pain. | ||
RUBY_VERSION=ruby-2.5 | ||
rvm install $RUBY_VERSION | ||
|
||
# rvm use --default ruby-2.5 # NOPE, not in shell scripts | ||
# https://rvm.io/rvm/basics | ||
# https://stackoverflow.com/questions/10632066/cant-change-rvm-default | ||
source $(rvm $RUBY_VERSION do rvm env --path) | ||
rvm alias delete default | ||
rvm alias create default $RUBY_VERSION | ||
|
||
gem install compass | ||
|
||
ruby --version | ||
compass --version | ||
|
||
# finally done with ruby | ||
yarn install |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
tasks: | ||
- init: yarn | ||
command: | | ||
.devcontainer/post-create-command | ||
yarn start | ||
ports: | ||
- port: 9000 | ||
onOpen: open-preview | ||
|
||
vscode: | ||
extensions: | ||
- esbenp.prettier-vscode |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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