Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,21 @@ For local development without Docker:

```bash
# Clone and install
git clone <repo-url>
cd app
git clone git@github.com:useplunk/plunk.git
cd plunk
yarn install

# Start infrastructure services (PostgreSQL, Redis, MinIO)
yarn services:up

# Set up environment variables
cp .env.example .env
# Edit .env with your configuration
cp apps/api/.env.example apps/api/.env
cp packages/db/.env.example packages/db/.env

# Edit apps/api/.env with your configuration
# Important! To start the api-server, the two variables `AWS_SES_ACCESS_KEY_ID` and `AWS_SES_SECRET_ACCESS_KEY` must not be empty.
# Dummy values are pre-set to enable local development (without the ability to send emails).
# If you plan to send emails in your development environment, replace the dummy values in `apps/api/.env`.

# Run database migrations
yarn workspace @plunk/db migrate:dev
Expand Down
4 changes: 2 additions & 2 deletions apps/api/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ S3_FORCE_PATH_STYLE=true
# AWS SES (Required - for sending emails)
# ==============================================================================
AWS_SES_REGION=eu-north-1
AWS_SES_ACCESS_KEY_ID=
AWS_SES_SECRET_ACCESS_KEY=
AWS_SES_ACCESS_KEY_ID=foo
AWS_SES_SECRET_ACCESS_KEY=bar

# Configuration sets for email tracking
SES_CONFIGURATION_SET=plunk-configuration-set # Default: with open/click tracking
Expand Down
Loading