Skip to content

Commit 73c7e1b

Browse files
committed
After review 0
1 parent f6fa057 commit 73c7e1b

File tree

4 files changed

+5
-37
lines changed

4 files changed

+5
-37
lines changed

.coderabbit.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: "en-US"
22
reviews:
33
profile: "chill"
44
high_level_summary: true
5+
poem: false
56
auto_review:
67
enabled: true
78
base_branches:

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,3 @@
11
### Summary
22

3-
Provide a general description of the code changes in your pull request …
4-
were there any bugs you had fixed? If so, mention them. If these bugs have open
5-
GitHub issues, be sure to tag them here as well, to keep the conversation
6-
linked together.
7-
8-
9-
### Unit test
10-
11-
Are your changes covered with unit tests, and do they not break anything?
12-
13-
You can run the existing unit tests using this command:
14-
15-
vendor/bin/phpunit tests/
16-
17-
18-
### Code style
19-
20-
Have you checked that you code is well-documented and follows the PSR-2 coding
21-
style?
22-
23-
You can check for this using this command:
24-
25-
vendor/bin/phpcs --standard=PSR2 src/ tests/
26-
27-
28-
### Other Information
29-
30-
If there's anything else that's important and relevant to your pull
31-
request, mention that information here. This could include benchmarks,
32-
or other information.
33-
34-
If you are updating any of the CHANGELOG files or are asked to update the
35-
CHANGELOG files by reviewers, please add the CHANGELOG entry at the top of the file.
36-
373
Thanks for contributing to phpList!

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ The project includes a Docker setup to run phpList with Apache and MySQL.
185185
Quick start (development/test):
186186

187187
- Build and start the stack: `docker compose up --build`
188-
- Open http://localhost:8080
188+
- Open [http://localhost:8081](http://localhost:8081)
189189

190190
The app container is configured to read database settings from environment variables that match config/parameters.yml defaults. The provided docker-compose.yml sets:
191191

docker-compose.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,13 @@ services:
6363
timeout: 5s
6464
retries: 10
6565
networks: [ appnet ]
66-
# command to import data from mysql to postgres
67-
# docker run --rm --network base-distribution_appnet dimitri/pgloader:latest pgloader mysql://phplist:phplist@base-distribution-mysql:3306/phplistdb postgresql://phplist:phplist@base-distribution-postgres:5432/phplistdb
66+
67+
6868

6969
volumes:
7070
db_data:
7171
pg_data:
72+
db_data_docker:
7273

7374
networks:
7475
appnet:

0 commit comments

Comments
 (0)