Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 749 Bytes

RUNNING_LOCALLY.md

File metadata and controls

31 lines (21 loc) · 749 Bytes

Running Locally 💻

Here you will understand how to run and setup the development environment for twitterclone in your local machine.

This guide is intended for Linux or MacOS users. For Windows users you could use something like WSL.

Prerequisites

1. PostgreSQL Setup

Start the containers

make start
# or
docker-compose up

Run the replication setup script

make db-setup-logical-replication
# or
chmod +x ./postgresql/setup_logical_replication.sh
./postgresql/setup_logical_replication.sh

You're done!

If you have any problems feel free to open an issue.