DISCLAIMER: Robin is a repository designed to be a teaching tool for entry-level developers to better understand implementing features. It's not meant to be a real product.
Robin
allows users to manage posts on all of their social media networks.
- Install Go from the official Go website
- From a terminal, navigate to the
/server
directory - Run the command
go get ./...
to install all project dependencies (in this case, it should install Echo for the local server) - To start the local server, run the terminal command
go run server.go
- In a browser, navigate to http://localhost:1323/ to see the server running
- Press
Control + C
in your terminal to stop the server process