Skip to content

Commit f811123

Browse files
committed
docs: review and improve CONTRIBUTING.md (#10)
1 parent 5dd91cd commit f811123

File tree

2 files changed

+105
-32
lines changed

2 files changed

+105
-32
lines changed

CONTRIBUTING.md

+98-32
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,47 @@
22

33
Welcome, we really appreciate if you're considering to contribute to effect-mongodb!
44

5-
## Setting Up Your Environment
5+
- [Initial setup](#initial-setup)
6+
- [Making changes](#making-changes)
7+
- [Tests](#tests)
68

7-
1. Fork this repo
8-
2. Clone your forked repo
9+
## Initial setup
10+
11+
Install the following tools to set up your environment:
12+
13+
- [Node.js](https://nodejs.org/en) 20 or newer
14+
- [pnpm](https://pnpm.io/) 9.4.0 or newer
15+
- [Docker](https://www.docker.com/) for running tests using `@testcontainers/mongodb`
16+
17+
Then, you can fork the repository and install the dependencies:
18+
19+
1. Fork this repository on GitHub
20+
2. Clone your forked repo:
921
```shell
1022
git clone https://github.com/<username>/effect-mongodb && cd effect-mongodb
1123
```
12-
3. Create a new branch
13-
```shell
14-
git checkout -b my-branch
15-
```
16-
4. Install dependencies
24+
3. Install dependencies:
1725
```shell
1826
pnpm install
1927
```
28+
4. Optionally, verify that everything is working correctly:
29+
```shell
30+
pnpm check
31+
pnpm test
32+
```
33+
34+
## Making changes
2035

21-
## Making Changes
36+
Create a new branch for your changes
2237

23-
### Implement Your Changes
38+
```shell
39+
git checkout -b my-branch
40+
```
2441

2542
Make the changes you propose to the codebase. If your changes impact functionality, please **add corresponding tests**
2643
to validate your updates.
2744

28-
### Validate Your Changes
45+
### Validate your changes
2946

3047
Run the following commands to ensure your changes do not introduce any issues:
3148

@@ -38,9 +55,7 @@ Run the following commands to ensure your changes do not introduce any issues:
3855
- If you encounter style issues, use `pnpm lint-fix` to automatically correct some of these.
3956
- `pnpm dtslint`: Run type-level tests.
4057

41-
### Document Your Changes
42-
43-
**Changeset Documentation**
58+
### Document your changes
4459

4560
Before committing your changes, document them with a changeset. This process helps in tracking modifications and
4661
effectively communicating them to the project team and users:
@@ -56,44 +71,95 @@ During the changeset creation process, you will be prompted to select the approp
5671
- **minor**: Choose this for new features that enhance functionality but do not disrupt existing features.
5772
- **major**: Select this for any changes that result in backward-incompatible modifications to the library.
5873

59-
## Finalizing Your Contribution
74+
### Commit your changes
6075

61-
### Commit Your Changes
62-
63-
Once you have documented your changes with a changeset, it’s time to commit them to the repository. Use a clear and
64-
descriptive commit message, which could be the same message you used in your changeset:
76+
Once you have documented your changes, commit them to the repository:
6577

6678
```bash
67-
git commit -am 'Add some feature'
79+
git commit -am "Add some feature"
6880
```
6981

70-
#### Linking to Issues
82+
#### Linking to issues
7183

7284
If your commit addresses an open issue, reference the issue number directly in your commit message. This helps to link
73-
your contribution clearly to specific tasks or bug reports. Additionally, if your commit resolves the issue, you can
74-
indicate this by adding a phrase like `", closes #<issue-number>"`. For example:
85+
your contribution clearly to specific tasks or bug reports.
86+
87+
For example:
7588

7689
```bash
77-
git commit -am 'Add some feature, closes #123'
78-
```
90+
# Reference issue #123
91+
git commit -am "Add some feature (#123)"
7992

80-
This practice not only helps in tracking the progress of issues but also automatically closes the issue when the commit
81-
is merged, streamlining project management.
93+
# Close the issue #123
94+
git commit -am "Add some feature (close #123)"
95+
```
8296

83-
### Push to Your Fork
97+
### Push to your fork
8498

85-
Push the changes up to your GitHub fork:
99+
Push the changes to your GitHub fork:
86100

87101
```bash
88102
git push origin my-branch
89103
```
90104

91-
### Create a Pull Request
105+
### Create a pull request
92106

93107
Open a pull request against the main branch on the original repository.
94108

95109
Please be patient! We will do our best to review your pull request as soon as possible.
96110

97-
## Release a new version (for maintainers)
111+
## Tests
112+
113+
We use [@testcontainers/mongodb](https://node.testcontainers.org/modules/mongodb/) to run MongoDB in a Docker container
114+
during tests.
98115

99-
Merge the PRs automatically created on GitHub with the name "Version Packages".
116+
### Write a test
117+
118+
In the `test` directory of a package, like [packages/effect-mongodb/test](packages/effect-mongodb/test), create a
119+
new file `<test suite name>.test.ts`.
120+
121+
Use the `describeMongo` function to automatically setup your test suite with a MongoDB connection.
122+
123+
```typescript
124+
import * as Db from "effect-mongodb/Db"
125+
import * as DocumentCollection from "effect-mongodb/DocumentCollection"
126+
import * as Effect from "effect/Effect"
127+
import * as O from "effect/Option"
128+
import { ObjectId } from "mongodb"
129+
import { expect, test } from "vitest"
130+
import { describeMongo } from "./support/describe-mongo.js"
131+
132+
describeMongo("My tests", (ctx) => {
133+
test("find one", async () => {
134+
const program = Effect.gen(function* (_) {
135+
const db = yield* _(ctx.database)
136+
const collection = Db.documentCollection(db, "find-one")
137+
138+
yield* _(
139+
DocumentCollection.insertMany(collection, [{ name: "john" }, { name: "alfred" }])
140+
)
141+
142+
return yield* _(DocumentCollection.findOne(collection, { name: "john" }))
143+
})
144+
145+
const result = await Effect.runPromise(program)
146+
147+
expect(result).toEqual(O.some({ _id: expect.any(ObjectId), name: "john" }))
148+
})
149+
})
150+
```
151+
152+
### Inspect MongoDB test instance
153+
154+
1. Export `EFFECT_MONGODB_DEBUG=true` environment variable
155+
2. Run the tests (by default in watch mode) and you will see the connection string in the console output
156+
```
157+
[EFFECT_MONGODB_DEBUG] MongoDB connection string with direct connection: 'mongodb://localhost:32775'
158+
```
159+
3. Copy the connection string `mongodb://localhost:32775`
160+
4. Open [MongoDB Compass](https://www.mongodb.com/products/tools/compass)
161+
5. Click **Add new connection**
162+
6. Paste the copied connection string in the URI field
163+
7. Click Advanced Connection Options
164+
8. Enable **Direct Connection**
165+
9. Click **Save & Connect**

RELEASE.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Release
2+
3+
This is a guide for maintainers on how to release a new version of the library.
4+
5+
## Release a new version
6+
7+
Merge the Pull Request automatically created on GitHub with the name **Version Packages** by changeset bot.

0 commit comments

Comments
 (0)