mirror of
https://github.com/dnote/dnote
synced 2026-03-15 06:55:49 +01:00
9 lines
260 B
Bash
Executable file
9 lines
260 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# setup.sh installs programs and depedencies necessary to run the project locally
|
|
# usage: ./setup.sh
|
|
set -eux
|
|
|
|
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
go get github.com/githubnemo/CompileDaemon
|
|
dep ensure
|
|
|