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
| <div class="myIconImage"> | |
| <div class="myIconImage-background-topTriangle"></div> | |
| <div class="myIconImage-background-midddleTriangle"></div> | |
| <div class="myIconImage-background-rightTriangle"></div> | |
| <div class="myIconImage-character-head"></div> | |
| <div class="myIconImage-character-lefteye"> | |
| <div class="myIconImage-character-lefteye-line"></div> | |
| </div> | |
| <div class="myIconImage-character-righteye"> | |
| <div class="myIconImage-character-righteye-line"></div> |
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
| elasticsearch: "http://localhost:9200", |
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
| exports.config = { | |
| seleniumAddress: 'http://127.0.0.1:4444/wd/hub', | |
| framework: 'mocha', // mochaを使用する | |
| mochaOpts: { // mochaの設定 | |
| ui: 'bdd', // テスト記述方法をビヘイビアで行う。tddも可能 | |
| reporter: 'dot', // テスト結果出力方法。詳しくはhttps://mochajs.org/#reporters | |
| slow: 3000, | |
| enableTimeouts: false // テスト中にタイムアウトさせるかの設定 | |
| }, | |
| specs: ['tests/**/*.js'], // テスト対象ファイル |
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
| Header set X-FRAME-OPTIONS "DENY" |
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
| coverage_clover: build/logs/clover.xml | |
| json_path: build/logs/coveralls-upload.json | |
| service_name: travis-ci | |
| exclude_no_stmt: true | |
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
| { | |
| "baseURL": "", | |
| "useSSLAzure":false, | |
| "useSSL": false, | |
| "SSLkey": "../cert/server.key", | |
| "SSLcert": "../cert/server.crt", | |
| "includeSocketIO": true, | |
| "activateAuth": false, | |
| "username": "", |
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
| vi /etc/rc.d/init.d/syonet |
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
| # php-fpmプロセスを調べる | |
| ps -ef | |
| php-fpm: master process (/root/. | |
| nobody 23272 23271 0 16:09 ? 00:00:00 | |
| ↑これがphp-fpmのプロセスで23272がプロセスID | |
| php-fpm: pool www | |
| nobody 23273 23271 0 16:09 ? 00:00:00 php-fpm: pool www | |
| root 23274 2 0 16:09 ? 00:00:00 [kworker/0:2] | |
| root 23322 2 0 16:14 ? 00:00:00 [kworker/0:0] |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link href="../../../../css/lib/onsenui/onsenui.css" rel="stylesheet" type="text/css"> | |
| <link href="../../../../css/lib/onsenui/onsen-css-components-dark-theme.css" rel="stylesheet" type="text/css"> | |
| <script type="text/javascript" src="../../../../js/lib/systemjs/system.js"></script> | |
| <script type="text/javascript" src="../../../../js/lib/angular/angular.min.js"></script> | |
| <script type="text/javascript" src="../../../../js/lib/onsenui/onsenui.min.js"></script> | |
| <script> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <projects total_count="2" offset="0" limit="25" type="array"> | |
| <project> | |
| <id>1</id> | |
| <name>さんぷる</name> | |
| <identifier>sample</identifier> | |
| <description/> | |
| <created_on>2015-11-14T08:14:05Z</created_on> | |
| <updated_on>2015-11-14T08:14:05Z</updated_on> |