* support flags commands, move to cmd * fix target name * test for happy path importer * add export cmd * fix wrong import, lint warns * increase test timeout * add sellp to allow main test server to start * implement all cmds * handle backup/restore errors * fix import status check, hide secret from logs * backup cmd err tests * randimize test port * avoid dup code in Last controller * add target to make all bin archives * remove container in make * add smiple scripts to simplify commands, update readme * add docs on dockerless, enforce app user * add restore info * move last to lastCommentsScope const
12 lines
371 B
Bash
Executable File
12 lines
371 B
Bash
Executable File
#!/bin/sh
|
|
echo "prepare environment"
|
|
# replace BASE_URL constant by REMARK_URL
|
|
sed -i "s|https://demo.remark42.com|${REMARK_URL}|g" /srv/web/*.js
|
|
# remove devtools attach helper. TODO: move to webpack loader
|
|
sed -i "/REMOVE-START/,/REMOVE-END/d" /srv/web/iframe.html
|
|
|
|
chown -R app:app /srv/var 2>/dev/null
|
|
|
|
echo "start remark42 server"
|
|
/sbin/su-exec app /srv/remark42 $@
|