diff --git a/website/dist/docs/contributing/code-of-conduct/index.html b/website/dist/docs/contributing/code-of-conduct/index.html
index a534971..92bc7f7 100644
--- a/website/dist/docs/contributing/code-of-conduct/index.html
+++ b/website/dist/docs/contributing/code-of-conduct/index.html
@@ -18,6 +18,15 @@
Code of Conduct
+
If you would like to contribute code to libreevent, we'd like you to follow the following guidelines.
+
+- Any code you want to contribute should have a reason to exist, please, if you find a bug or you have any idea for what you might want to contribute, ask around on GitHub, not that you do something nobody has use for or somebody else is already working on.
+- Always be polite to other developers. They spend their free-time working on this project. Even if the code is not as good as you might want it to be, don't start to offend people, give them some constructive criticism or suggestions on how they can improve it.
+- All the code that you produce should in no way be harmful to the consumer. If you have a proof-of-concept for a potential exploit, we'd like you to share it with us.
+- If you have code that is unfinished and you don't have the time or willingness to finish it, please open a PR as a draft and we'll mark it as up for grabs.
+- Please do some testing on the code you write to make sure it works as expected. We will also do our own testing, but we expect you to have checked that everything is working as it should beforehands.
+- Please follow our programming style and make sure that eslint does not show any errors with the code you just wrote.
+
diff --git a/website/dist/docs/contributing/design-guidelines/index.html b/website/dist/docs/contributing/design-guidelines/index.html
index bb352bc..d4c6413 100644
--- a/website/dist/docs/contributing/design-guidelines/index.html
+++ b/website/dist/docs/contributing/design-guidelines/index.html
@@ -18,6 +18,8 @@
Design Guidelines
+
Everything in libreevent should be designed in a way that puts legibility and ease of use as its priority, instead of opting for special effects that are, undeniably, nice, but do not contribute to improved usability and, as every effect needs some lines of code, also wastes bandwidth that is very limited if a lot of people access the sites simultaneously.
+
All color used in libreevent should be a color variable that is defined in the App.vue files which means those colors can be changed easily in the future or as part of switching to dark mode. When designing something, please avoid adding more colors whenever possible.
diff --git a/website/dist/docs/contributing/packaging/index.html b/website/dist/docs/contributing/packaging/index.html
new file mode 100644
index 0000000..5ac930c
--- /dev/null
+++ b/website/dist/docs/contributing/packaging/index.html
@@ -0,0 +1,31 @@
+
+
+
+
+
+
Packaging
+
To be able to work on libreevent, you need to have node.js and npm installed on your computer.
+
Then, to set up the development environment, run
+
npm i
+
+
in the src/server, src/webapp/main and src/webapp/setup directories. This creates the node_modules folder in each of those directories. This is also what you need to do, if you want to upload the development version of libreevent.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/website/dist/docs/side-bar.html b/website/dist/docs/side-bar.html
index ff145d6..fc038b2 100644
--- a/website/dist/docs/side-bar.html
+++ b/website/dist/docs/side-bar.html
@@ -23,6 +23,7 @@
Simple to set up
@@ -47,7 +47,7 @@
Free & Open Source
You may use this project entirely for free or donate some money to keep it alive! You may also help contributing to the project to make it even better!
-
Donate
+
Donate
Contributing
diff --git a/website/src/contributing/design-guidelines.md b/website/src/contributing/design-guidelines.md
index cb72ea4..8b5844f 100644
--- a/website/src/contributing/design-guidelines.md
+++ b/website/src/contributing/design-guidelines.md
@@ -1,3 +1,5 @@
# Design Guidelines
-Everything in libreevent should be designed in a way that puts legibility and ease of use as its priority, instead of opting for special effects that are, undeniably, nice, but do not contribute to improved usability and, as every effect needs some lines of code, also wastes bandwidth that is very limited if a lot of people access the sites simultaneously.
\ No newline at end of file
+Everything in libreevent should be designed in a way that puts legibility and ease of use as its priority, instead of opting for special effects that are, undeniably, nice, but do not contribute to improved usability and, as every effect needs some lines of code, also wastes bandwidth that is very limited if a lot of people access the sites simultaneously.
+
+All color used in libreevent should be a color variable that is defined in the App.vue files which means those colors can be changed easily in the future or as part of switching to dark mode. When designing something, please avoid adding more colors whenever possible.
\ No newline at end of file