From 6b9b240ab2edfe791ebfa7e163c805d6ae2fd186 Mon Sep 17 00:00:00 2001 From: Max Walters Date: Sat, 10 Aug 2024 01:37:05 -0400 Subject: [PATCH] fix installation command --- developer/setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer/setup.md b/developer/setup.md index eec676a..7e2d20a 100644 --- a/developer/setup.md +++ b/developer/setup.md @@ -12,9 +12,9 @@ Ready to hack on your site? Here's a quick overview. After installing Go and Node.js, run the following commands to build, configure, and run the application. ```bash -go get -d github.com/writefreely/writefreely/cmd/writefreely +go install github.com/writefreely/writefreely/cmd/writefreely@latest -cd $GOPATH/src/github.com/writefreely/writefreely +cd $GOPATH/pkg/mod/github.com/writefreely/writefreely@* make build # Compile the application make install # Config, generate keys, setup database, install LESS compiler