Skip to content
Merged
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
17 changes: 17 additions & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copilot Instructions

Propulsion is a suite of .NET/F# NuGet packages for reactive event-processing pipelines.

## Build & test

```bash
dotnet build Propulsion.sln --configuration Release
dotnet test Propulsion.sln --no-restore --verbosity minimal
```
Comment on lines +6 to +10

## Key conventions

- All library code is **F#**; follow existing style in each file.
- Keep public API changes minimal and backward-compatible where possible.
- Do not introduce new NuGet dependencies without a strong reason.
- Each package lives in its own subdirectory under `src/`.
30 changes: 0 additions & 30 deletions .gitpod.yml

This file was deleted.

34 changes: 34 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Agent Guidelines for Propulsion

This repository contains the **Propulsion** library — a suite of .NET NuGet packages for building reactive event-processing pipelines on top of event stores such as EventStoreDB, MessageDB, and the [Equinox](https://github.com/jet/equinox) stores (CosmosStore, DynamoStore, MemoryStore).

See [`.github/copilot-instructions.md`](.github/copilot-instructions.md) for Copilot-specific instructions.

## Repository layout

| Path | Purpose |
|---|---|
| `src/` | Library source — one directory per NuGet package |
| `tests/` | Test projects |
| `tools/` | Helper tooling |
| `DOCUMENTATION.md` | In-depth documentation |
| `CHANGELOG.md` | Release history |

## Build & test

```bash
# Build
dotnet build Propulsion.sln --configuration Release

# Test (requires a local Postgres instance for MessageDb tests)
dotnet test Propulsion.sln --no-restore --verbosity minimal
```

The CI workflow (`.github/workflows/ci.yaml`) spins up Postgres and installs `message-db` automatically; for local runs without Postgres the MessageDb-related tests will be skipped or fail.
Comment on lines +23 to +27

## Language & style

- All library code is written in **F#**.
- Follow the conventions already present in each file — no tabs, 4-space indent.
- Do not add external dependencies unless absolutely necessary.
- Keep public API surface minimal and consistent with existing packages.
Loading