From b0391b3609bc313af4122c21d201061dfcbcf5fc Mon Sep 17 00:00:00 2001 From: wagslane Date: Wed, 31 May 2023 12:33:52 -0600 Subject: [PATCH] readme --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index fd31e90..d9e6724 100644 --- a/README.md +++ b/README.md @@ -43,3 +43,17 @@ Then run the migrations: ```bash ./scripts/migrateup.sh ``` + +Start the server: + +```bash +go build -o out && ./out +``` + +Because the `DATABASE_URL` environment variable is set, the server will connect to the database and serve the webpage at `http://localhost:8000`. The page should be fully functional now. You can: + +* Create a user (login as that user) +* Save notes +* Logout (To log in again you'll just create a new user) + +*The purpose of this project is to just be a simple CRUD app that we can use to practice CI/CD. It's not meant to be a fully functional app.*