Website aggregator that uses postgres and go to keep up to date on the posts that matter to you!
Installation notes:
- You'll need go and Postgres to run the program
- You can install the files by doing typing
go install github.com/coolarif/Gator@latest - Look at how to setup the database at Setting up the database
- Read the Usage guide on how to enter commands into your command line.
- Install postgres.
For Linux/WSL:
sudo apt update
sudo apt install postgresql postgresql-contrib
For MacOS:
brew install postgresql@16
-
Check it is installed with
psql --version -
Set up password (for linux only)
sudo passwd postgres -
Set up the postgres server in the background
for Mac:brew services start postgresqlfor Linux:sudo service postgresql start -
Enter the psql shell:
for Mac:psql postgresfor Linux:sudo -u postgres psql
You should now see a prompt like this:
postgres=#
- Create a new database, I called mine Gator:
\c gator
You should see a new prompt that looks like this
gator=#
- Set the user password (linux only)
ALTER USER postgres PASSWORD 'postgres';
In this case the password is postgres
To be Updated update check