Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 519 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 519 Bytes

Mimic CMS

A hand-built simple drag-and-drop CMS across multiple repositories (see other repositories in this organization.)

Running locally

Bash scripts in root of folder containing cloned repositories:

install.sh

#!/bin/bash
dirs=(./admin ./builder ./host)

for D in ${dirs[*]}; do (cd $D && echo "INSTALLING PACKAGES IN: $D" && exec npm i); done

launch.sh

#!/bin/bash
dirs=(./admin ./builder)

(trap "kill 0" SIGINT
for D in ${dirs[*]}; do
    cd $D && npm run dev &
done
wait)