mirror of
https://github.com/dnote/dnote
synced 2026-03-14 14:35:50 +01:00
31 lines
1 KiB
Bash
Executable file
31 lines
1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# shellcheck disable=SC1090
|
|
# dev.sh builds and starts development environment
|
|
set -eux -o pipefail
|
|
|
|
dir=$(dirname "${BASH_SOURCE[0]}")
|
|
basePath="$dir/../.."
|
|
serverPath="$basePath/pkg/server"
|
|
|
|
# Set env
|
|
DBPath=../../dev-server.db
|
|
|
|
# copy assets
|
|
mkdir -p "$basePath/pkg/server/static"
|
|
cp "$basePath"/pkg/server/assets/static/* "$basePath/pkg/server/static"
|
|
# run asset pipeline in the background
|
|
(cd "$basePath/pkg/server/assets/" && "$basePath/pkg/server/assets/styles/build.sh" true ) &
|
|
(cd "$basePath/pkg/server/assets/" && "$basePath/pkg/server/assets/js/build.sh" true ) &
|
|
|
|
# run server
|
|
moduleName="github.com/dnote/dnote"
|
|
ldflags="-X '$moduleName/pkg/server/buildinfo.CSSFiles=main.css' -X '$moduleName/pkg/server/buildinfo.JSFiles=main.js' -X '$moduleName/pkg/server/buildinfo.Version=dev' -X '$moduleName/pkg/server/buildinfo.Standalone=true'"
|
|
task="go run -ldflags \"$ldflags\" --tags fts5 main.go start -port 3001"
|
|
|
|
(
|
|
cd "$basePath/pkg/watcher" && \
|
|
go run main.go \
|
|
--task="$task" \
|
|
--context="$serverPath" \
|
|
"$serverPath"
|
|
)
|