From b6c0a0108b7b13a58323f5e8e0c19a0614e69b0d Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Tue, 16 Apr 2019 11:29:58 -0400 Subject: [PATCH] Update dev install steps with make install changes --- developer/setup.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/developer/setup.md b/developer/setup.md index a7d3a23..0ade7f4 100644 --- a/developer/setup.md +++ b/developer/setup.md @@ -18,7 +18,6 @@ go get -d github.com/writeas/writefreely/cmd/writefreely export GO111MODULE=on make build # Compile the application -./cmd/writefreely/writefreely --config # Create configuration file -make install # Generates encryption keys; installs LESS compiler -make run # Runs the application +make install # Config, generate keys, setup database, install LESS compiler +make run # Run the application ```