summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-13 21:15:28 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-15 14:13:49 +0530
commit112f3f3daf56dcc1f7e446a84ad0bed9a0c8d7b7 (patch)
tree14e2b98a6bdca690130127170c8b39be62dfcd70 /CONTRIBUTING.md
parentFixing the broken build process when building using the Dockerfile. (diff)
downloadferdium-app-112f3f3daf56dcc1f7e446a84ad0bed9a0c8d7b7.tar.gz
ferdium-app-112f3f3daf56dcc1f7e446a84ad0bed9a0c8d7b7.tar.zst
ferdium-app-112f3f3daf56dcc1f7e446a84ad0bed9a0c8d7b7.zip
Minor refactoring to have consistent command-line invocations.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index efcc4eac3..d4a3ef02c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -85,7 +85,7 @@ dnf install libX11-devel libXext-devel libXScrnSaver-devel libxkbfile-devel rpm
85Please make sure you run this command as an administrator: 85Please make sure you run this command as an administrator:
86 86
87```bash 87```bash
88npm install --global windows-build-tools --vs2015 88npm i -g windows-build-tools --vs2015
89``` 89```
90 90
91### Clone repository with submodule 91### Clone repository with submodule
@@ -101,6 +101,7 @@ It is important you execute the last command to get the required submodules (rec
101### Local caching of dependencies 101### Local caching of dependencies
102 102
103Set these env vars into your profile (or if you use [direnv](https://direnv.net/), you can manage them via the respective `.envrc` file) 103Set these env vars into your profile (or if you use [direnv](https://direnv.net/), you can manage them via the respective `.envrc` file)
104
104```bash 105```bash
105export ELECTRON_CACHE=$HOME/.cache/electron 106export ELECTRON_CACHE=$HOME/.cache/electron
106export ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder 107export ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
@@ -127,8 +128,7 @@ npm run rebuild
127Ferdi requires its recipes to be packaged before it can use it. When running Ferdi as a development instance, you'll need to package the local recipes before you can create any services inside Ferdi. 128Ferdi requires its recipes to be packaged before it can use it. When running Ferdi as a development instance, you'll need to package the local recipes before you can create any services inside Ferdi.
128 129
129```bash 130```bash
130cd recipes 131cd recipes && npm i && npm run package
131npm install && npm run package
132``` 132```
133 133
134### Using Docker to build an rpm package 134### Using Docker to build an rpm package