This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/Makefile

30 lines
643 B
Makefile

include .env.dist
-include .env
KEYS_DIR=./keys
install:
-cp -n .env.dist .env
if [ ! -d "${KEYS_DIR}" ]; then mkdir -p ${KEYS_DIR}; openssl genrsa -out ${KEYS_DIR}/private.pem 2048; openssl rsa -in ${KEYS_DIR}/private.pem -outform PEM -pubout -out ${KEYS_DIR}/public.pem; fi
yarn
node server/migrate.js
run:
yarn dev
start:
node_modules/.bin/avris-daemonise start webserver yarn dev
stop:
node_modules/.bin/avris-daemonise stop webserver
deploy: install
yarn build
node server/migrate.js
echo "\nimportScripts('https://arc.io/arc-sw-core.js');" >> static/sw.js
switch:
-rm data
rm -rf cache
ln -s ./locale/${LANG} ./data