Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/l5-swagger.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
* Constants which can be used in annotations
*/
'constants' => [
'L5_SWAGGER_CONST_HOST' => env('APP_URL', 'http://localhost') . '/v1',
'L5_SWAGGER_CONST_HOST' => env('APP_URL', 'https://api-preparemessages-stage.ifrc.org') . '/v2',
],
],
];
3 changes: 3 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ COPY ./ /var/www/html
WORKDIR /var/www/html
RUN composer install --no-dev --prefer-dist --optimize-autoloader

# Generate Swagger documentation
RUN php artisan l5-swagger:generate

RUN mkdir -p storage/framework/sessions
RUN mkdir -p storage/framework/views
RUN mkdir -p storage/framework/cache
Expand Down
Loading