aboutsummaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
deleted file mode 100644
index f771f0e..0000000
--- a/CONTRIBUTING.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# Contributing
-
-In order to get started, you need to install [yarn](https://yarnpkg.com/), and a
-proper ruby development environment (with bundler already installed). Then, you
-can simply fetch dependencies like so:
-
-```
-$ yarn
-$ bundle
-```
-
-After that, build Javascript files with:
-
-```
-$ yarn run webpack
-```
-
-And in another session start Jekyll with:
-
-```
-$ bundle exec jekyll serve
-```
-
-## Testing
-
-Before submitting a Pull Request, make sure that tests are passing. This can be
-checked by running:
-
-```
-$ bundle exec rubocop
-$ bundle exec rake
-```
-
-## Deploying
-
-This is already handled through a Github action, so don't worry about it.