@@ -23,7 +23,7 @@ Once you have installed the above, follow
23
23
to
24
24
[ ` fork ` ] ( https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks )
25
25
and [ ` clone ` ] ( https://github.com/git-guides/git-clone ) the repository
26
- (` adrianprelipcean/ express-rate-limit-postgresql` ).
26
+ (` express-rate-limit/ rate-limit-postgresql ` ).
27
27
28
28
Once you have forked and cloned the repository, you can
29
29
[ pick out an issue] ( https://github.com/express-rate-limit/express-rate-limit-postgresql/issues )
@@ -60,7 +60,6 @@ The library is written in
60
60
of Node. The code is arranged as follows:
61
61
62
62
``` sh
63
- rate-limit-postgresql
64
63
├── changelog.md
65
64
├── code_of_conduct.md
66
65
├── configs
@@ -71,6 +70,7 @@ rate-limit-postgresql
71
70
├── db
72
71
│ ├── cli
73
72
│ │ ├── apply_all_migrations.sh
73
+ │ │ ├── create_migration.sh
74
74
│ │ ├── init_db.sh
75
75
│ │ └── run_tests.sh
76
76
│ ├── linting
@@ -101,23 +101,21 @@ rate-limit-postgresql
101
101
│ │ ├── 1-init.sql
102
102
│ │ ├── 2-add-db-functions-agg.sql
103
103
│ │ ├── 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
107
108
│ ├── stores
108
109
│ │ ├── aggregated_ip
109
110
│ │ │ └── store_aggregated_ip.ts
110
111
│ │ └── individual_ip
111
112
│ │ └── store_individual_ip.ts
112
113
│ └── util
113
- │ ├── migration_handler.ts
114
- │ └── session_handler.ts
114
+ │ └── migration_handler.ts
115
115
├── 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
121
119
├── third_party_licenses
122
120
│ ├── dev_detailed.json
123
121
│ ├── dev_summary.txt
@@ -222,20 +220,19 @@ changes to GitHub) your commits. To push your changes to your fork:
222
220
```
223
221
224
222
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
226
224
[ ` rebase ` ] ( https://docs.github.com/en/get-started/using-git/about-git-rebase )
227
225
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:
230
227
231
228
```
232
229
> git fetch upstream master
233
230
> git rebase upstream/master
234
231
```
235
232
236
233
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
239
236
[ this guide] ( https://docs.github.com/en/get-started/using-git/resolving-merge-conflicts-after-a-git-rebase )
240
237
to resolve them.
241
238
0 commit comments