- 16 GB Memory
- 8 Core Cpu
- 64 GB Storage
- At least one IPv4 pointing to a domain
- Clone the project from CVS:
git clone <repo> && cd <app_dir>
- Copy
.env.exampleto.envAnd modify it as you wish.cp .env.example .env
- Download and install dependencies
go mod download
- Handle the database migrations via:
./ database migrate up
- Handle the database seeders via:
./ database seed run
- Bootstrap the application via:
./ app bootstrap
Docker and docker compose are available as well:
docker compose -f docker-compose.yml up -dspecifying docker-compose.yml is necessary due to port exposure management.