mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
9 lines
252 B
Bash
Executable file
9 lines
252 B
Bash
Executable file
#!/bin/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
|
|
|