Memnix Rest API
Memnix REST is the rest API that is used by user interfaces to create decks and cards and play on MemnixAPP. It's using Gofiber to handle requests and Gorm as a layer for Postgres.
Create a .env file
# This is a sample config file
DB_USER="user"
DB_PASSWORD="password"
DB_PORT ="port"
DB_DB = "mydb"
DB_HOST="localhost"