This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| initialState = { | |
| 'byTripId': {}, | |
| 'byStartDate': {} | |
| } | |
| GET_v1_trips = { | |
| "summary": { | |
| "top_rpm": 4218, | |
| "avg_speed": 28.154825026511137 | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDGOAkazlCf/HADwddf+G1SAuJFHgusn5S+nv2Ukk3dI335i7I+UkQ+pTIpMhztM5SRm931p6mlCX+6kVbgF+IvrXCFc8n0lG2JyGba7ejcB5ysCX+l5iGhtXPYjfnmdSwDQRzB08OALqdeoms+dPm3o4SWHtssGhxjdWgjRqDxNyInzQbVDszlJsMSBZqGxueNmN7VHzeLdlYXB0xthT6kei8tkBRUYTHmiGIS4AkD8unl9c+FRtyjY9Ob3H5MHN48ugs9tIHqq6ycKaksyVu1QbAAjczetnxqlmg+W9H8q70BMnvran/xlQbR92E7ghBAODqVDIjm7o4B0Tb8/x7X shamirhusein@gmail.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| upstream php-fpm { | |
| server unix:/var/run/php5-fpm.sock; | |
| } | |
| server { | |
| listen 80; | |
| server_name www.example.com; | |
| rewrite ^ http://example.com$request_uri?; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM php:7.0.4-fpm | |
| RUN apt-get update && apt-get install -y libmcrypt-dev \ | |
| mysql-client libmagickwand-dev --no-install-recommends \ | |
| && pecl install imagick \ | |
| && docker-php-ext-enable imagick \ | |
| && docker-php-ext-install mcrypt pdo_mysql |