You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/sysadmin/configuration/easydb-server.yml/plugins/_index.en.md
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,15 +124,28 @@ git submodule update
124
124
make
125
125
```
126
126
127
-
If "make" asks for the programm "coffee" then please install the newest version which starts with "1." e.g. version 1.12.7 during the time of writing this. On a Debian 10 server, these commands have been tested to achieve that:
127
+
In case of problems: (apply sudo as needed)
128
+
129
+
Missing permissions when running `make` can be fixed by calling `chmod -R o+w plugin/` from one level above the plugin directory.
130
+
131
+
If "make" asks for the programm "[coffee](https://coffeescript.org/)" then please install the newest version which starts with "1." e.g. version 1.12.7 during the time of writing this.
132
+
On a Debian 10 server, these commands have been tested to achieve that:
128
133
129
134
```bash
130
135
apt-get install npm
131
136
npm install -g coffee-script@1
137
+
```
138
+
139
+
Typically not needed, but mentioned here just in case:
140
+
141
+
```bash
132
142
cd /usr/bin
133
-
ln -s nodejs node # this may not be needed
143
+
ln -s nodejs node
134
144
```
135
145
146
+
Another program that may be unavailable is "[sass](https://sass-lang.com/)".
147
+
If you run into this, you may get it via `apt install ruby-sass`, assuming you're on a debian derivate.
148
+
136
149
After that you should return to the directory where you executed "make" and execute it again.
137
150
138
151
Now the plugin is ready but the easydb does not yet know of the plugin. To change that, compare the following lines to the configuration file `config/easydb-server.yml` below the [data store](/en/sysadmin/installationi#mount). Add the missing lines:
0 commit comments