Skip to content

Commit cf66a29

Browse files
chore: updated file structure and use correct reference for repository URL
1 parent b765a2a commit cf66a29

File tree

1 file changed

+14
-17
lines changed

1 file changed

+14
-17
lines changed

contributing.md

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Once you have installed the above, follow
2323
to
2424
[`fork`](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks)
2525
and [`clone`](https://github.com/git-guides/git-clone) the repository
26-
(`adrianprelipcean/express-rate-limit-postgresql`).
26+
(`express-rate-limit/rate-limit-postgresql`).
2727

2828
Once you have forked and cloned the repository, you can
2929
[pick out an issue](https://github.com/express-rate-limit/express-rate-limit-postgresql/issues)
@@ -60,7 +60,6 @@ The library is written in
6060
of Node. The code is arranged as follows:
6161

6262
```sh
63-
rate-limit-postgresql
6463
├── changelog.md
6564
├── code_of_conduct.md
6665
├── configs
@@ -71,6 +70,7 @@ rate-limit-postgresql
7170
├── db
7271
│ ├── cli
7372
│ │ ├── apply_all_migrations.sh
73+
│ │ ├── create_migration.sh
7474
│ │ ├── init_db.sh
7575
│ │ └── run_tests.sh
7676
│ ├── linting
@@ -101,23 +101,21 @@ rate-limit-postgresql
101101
│ │ ├── 1-init.sql
102102
│ │ ├── 2-add-db-functions-agg.sql
103103
│ │ ├── 3-add-db-functions-ind.sql
104-
│ │ └── 4-add-db-functions-sessions.sql
105-
│ ├── models
106-
│ │ └── session.ts
104+
│ │ ├── 4-add-db-functions-sessions.sql
105+
│ │ ├── 5-hotfix-update-constraints.sql
106+
│ │ ├── 6-move-session-to-db-agg.sql
107+
│ │ └── 7-move-session-to-db-agg.sql
107108
│ ├── stores
108109
│ │ ├── aggregated_ip
109110
│ │ │ └── store_aggregated_ip.ts
110111
│ │ └── individual_ip
111112
│ │ └── store_individual_ip.ts
112113
│ └── util
113-
│ ├── migration_handler.ts
114-
│ └── session_handler.ts
114+
│ └── migration_handler.ts
115115
├── test
116-
│ ├── stores
117-
│ │ ├── store_aggregated_ip.spec.ts
118-
│ │ └── store_individual_ip.spec.ts
119-
│ └── util
120-
│ └── session_handler.spec.ts
116+
│ └── stores
117+
│ ├── store_aggregated_ip.spec.ts
118+
│ └── store_individual_ip.spec.ts
121119
├── third_party_licenses
122120
│ ├── dev_detailed.json
123121
│ ├── dev_summary.txt
@@ -222,20 +220,19 @@ changes to GitHub) your commits. To push your changes to your fork:
222220
```
223221

224222
If there are changes made to the `master` branch of the
225-
`adrianprelipcean/express-rate-limit-postgresql` repository, you may wish to
223+
`express-rate-limit/rate-limit-postgresql` repository, you may wish to
226224
[`rebase`](https://docs.github.com/en/get-started/using-git/about-git-rebase)
227225
your branch to include those changes. To rebase, or include the changes from the
228-
`master` branch of the `adrianprelipcean/express-rate-limit-postgresql`
229-
repository:
226+
`master` branch of the `express-rate-limit/rate-limit-postgresql` repository:
230227

231228
```
232229
> git fetch upstream master
233230
> git rebase upstream/master
234231
```
235232

236233
This will automatically add the changes from `master` branch of the
237-
`adrianprelipcean/express-rate-limit-postgresql` repository to the current
238-
branch. If you encounter any merge conflicts, follow
234+
`express-rate-limit/rate-limit-postgresql` repository to the current branch. If
235+
you encounter any merge conflicts, follow
239236
[this guide](https://docs.github.com/en/get-started/using-git/resolving-merge-conflicts-after-a-git-rebase)
240237
to resolve them.
241238

0 commit comments

Comments
 (0)