From 2e924c8c5019ea5df21d61275407c4809ea99967 Mon Sep 17 00:00:00 2001 From: Binyamin Aron Green Date: Fri, 18 Jun 2021 18:59:30 -0400 Subject: [PATCH] Change git URLs in developer/setup --- developer/setup.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/developer/setup.md b/developer/setup.md index ee65b3b..1e4d6b1 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/writeas/writefreely/cmd/writefreely +go get -d github.com/writefreely/writefreely/cmd/writefreely -cd $GOPATH/src/github.com/writeas/writefreely +cd $GOPATH/src/github.com/writefreely/writefreely make build # Compile the application make install # Config, generate keys, setup database, install LESS compiler @@ -26,7 +26,7 @@ make run # Run the application Use the following steps to build WriteFreely without Make. First, get the code: ```bash -git clone https://github.com/writeas/writefreely.git +git clone https://github.com/writefreely/writefreely.git cd writefreely ```