aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-06-24 07:31:25 +0200
committerGitHub <noreply@github.com>2019-06-24 07:31:25 +0200
commitac4fda6ae9dbe4abcff3bedc214b4b6a2c171050 (patch)
tree0fb4060f07b0549eb3eeb527d006c61f82e1ae2d
parentbd6a7622d339c76c45d10bd5d942fe9bebe0f56a (diff)
parent2a61e13fae4e71c804e96caefd3fdb46f09a81db (diff)
downloadwallabag-ac4fda6ae9dbe4abcff3bedc214b4b6a2c171050.tar.gz
wallabag-ac4fda6ae9dbe4abcff3bedc214b4b6a2c171050.tar.zst
wallabag-ac4fda6ae9dbe4abcff3bedc214b4b6a2c171050.zip
Merge pull request #4021 from wallabag/doc/improve-contributing
Improve CONTRIBUTING guide
-rw-r--r--.github/CONTRIBUTING.md32
-rw-r--r--docker-compose.yml20
-rw-r--r--docker/php/Dockerfile23
3 files changed, 60 insertions, 15 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 920f1905..d5599206 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -1,11 +1,41 @@
1# How to contribute 1# How to contribute
2 2
3## Test it locally
4
5### Using Docker
6
7- Clone the repository
8- Ensure your Docker daemon is running
9- Launch `docker-compose up`
10
11You'll then have:
12- a web server (nginx)
13- a PHP daemon (using FPM)
14- a Redis database (to handle imports)
15- a SQLite database to store articles
16
17You can now access your wallabag instance using that url: `http://127.0.0.1:8000`
18
19If you want to test using an other database than SQLite, uncomment the `postgres` or `mariadb` code from the `docker-compose.yml` file at the root of the repo. Also uncomment related line in the `php` section so the database will be linked to your PHP instance.
20
21### Using your own PHP server
22
23- Ensure you are running PHP > 7.1.
24- Clone the repository
25- Launch `composer install`
26- If you got some errors, fix them (they might be related to some missing PHP extension from your machine)
27- Then `php bin/console wallabag:install`
28- If you got some errors, fix them (they might be related to some missing PHP extension from your machine)
29- Run `php bin/console server:run`
30
31You can now access your wallabag instance using that url: `http://127.0.0.1:8000`
32
3## You found a bug 33## You found a bug
4Please [open a new issue](https://github.com/wallabag/wallabag/issues/new). 34Please [open a new issue](https://github.com/wallabag/wallabag/issues/new).
5 35
6To fix the bug quickly, we need some infos: please answer to the questions in the issue form. 36To fix the bug quickly, we need some infos: please answer to the questions in the issue form.
7 37
8If you have the skills, look for errors into php, server and application (see `var/logs`) logs. 38If you have the skills, look for errors into PHP, server and application logs (see `var/logs`).
9 39
10Note : If you have large portions of text, use [Github's Gist service](https://gist.github.com/) or other pastebin-like. 40Note : If you have large portions of text, use [Github's Gist service](https://gist.github.com/) or other pastebin-like.
11 41
diff --git a/docker-compose.yml b/docker-compose.yml
index 3c28f2f1..0f8f0970 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,9 +1,9 @@
1version: '2' 1version: '2'
2services: 2services:
3 nginx: 3 nginx:
4 image: nginx 4 image: nginx:alpine
5 ports: 5 ports:
6 - "8080:80" 6 - "8000:80"
7 volumes: 7 volumes:
8 - ./docker/nginx/nginx.conf:/nginx.conf 8 - ./docker/nginx/nginx.conf:/nginx.conf
9 - ./docker/logs/nginx:/var/log/nginx 9 - ./docker/logs/nginx:/var/log/nginx
@@ -32,8 +32,8 @@ services:
32 # - ./docker/postgres/env 32 # - ./docker/postgres/env
33 # - ./docker/mariadb/env 33 # - ./docker/mariadb/env
34 34
35 #postgres: 35 # postgres:
36 # image: postgres:9 36 # image: postgres:11-alpine
37 # ports: 37 # ports:
38 # - "5432:5432" 38 # - "5432:5432"
39 # volumes: 39 # volumes:
@@ -41,7 +41,7 @@ services:
41 # env_file: 41 # env_file:
42 # - ./docker/postgres/env 42 # - ./docker/postgres/env
43 43
44 #mariadb: 44 # mariadb:
45 # image: mariadb:10 45 # image: mariadb:10
46 # ports: 46 # ports:
47 # - "3306:3306" 47 # - "3306:3306"
@@ -50,12 +50,12 @@ services:
50 # env_file: 50 # env_file:
51 # - ./docker/mariadb/env 51 # - ./docker/mariadb/env
52 52
53 rabbitmq: 53 # rabbitmq:
54 image: rabbitmq:3-management 54 # image: rabbitmq:3-management-alpine
55 ports: 55 # ports:
56 - "15672:15672" 56 # - "15672:15672"
57 57
58 redis: 58 redis:
59 image: redis 59 image: redis:4-alpine
60 ports: 60 ports:
61 - "6379:6379" 61 - "6379:6379"
diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile
index b632cb8a..d9b2e5cc 100644
--- a/docker/php/Dockerfile
+++ b/docker/php/Dockerfile
@@ -4,10 +4,25 @@ FROM php:7.2-fpm
4ARG timezone='Europe/Paris' 4ARG timezone='Europe/Paris'
5 5
6RUN apt-get update && apt-get install -y \ 6RUN apt-get update && apt-get install -y \
7 libmcrypt-dev libicu-dev libpq-dev libxml2-dev libpng-dev libjpeg-dev \ 7 libmcrypt-dev \
8 && /usr/local/bin/docker-php-ext-configure gd --with-jpeg-dir=/usr/include \ 8 libicu-dev \
9 && docker-php-ext-install \ 9 libpq-dev \
10 iconv mbstring intl pdo pdo_mysql pdo_pgsql gd 10 libxml2-dev \
11 libpng-dev \
12 libjpeg-dev \
13 libsqlite3-dev \
14 imagemagick \
15 libmagickwand-dev
16RUN docker-php-ext-install \
17 iconv \
18 mbstring \
19 intl \
20 pdo \
21 pdo_mysql \
22 pdo_pgsql \
23 pdo_sqlite
24
25RUN printf "\n" | pecl install imagick && docker-php-ext-enable imagick
11 26
12RUN echo "date.timezone="$timezone > /usr/local/etc/php/conf.d/date_timezone.ini 27RUN echo "date.timezone="$timezone > /usr/local/etc/php/conf.d/date_timezone.ini
13 28