Skip to content

Jareechang/aws-aurora-starter

Repository files navigation

AWS Aurora starter

This is a starter repo for the AWS Aurora technical series.

Getting started

  1. Start local PostgreSQL
docker-compose up

Note: To re-reun with new changes (configuration, sql migrations), run -

docker-compose up --build --force-recreate -V

-V - Forces volume remount

  1. Add local PostgreSQL credentials to .env.local

.env.local:

DB_USERNAME=user
DB_HOST=0.0.0.0
DB_PASSWORD=test123
DB_PORT=5438
  1. Start next.js local
yarn dev