This file has been truncated, but you can view the full file.
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
| [ | |
| { | |
| "name": "PLAYERUNKNOWN'S BATTLEGROUNDS", | |
| "owners_before_sale": 0, | |
| "owners": 63688000, | |
| "sales": 63688000, | |
| "price": 29.99, | |
| "metascore": 86, | |
| "median_playtime_in_minutes": 11995 | |
| }, |
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
| const Liana = require('forest-express-sequelize'); | |
| const express = require('express'); | |
| const initCollections = require('./collections'); | |
| const initModels = require('./models'); | |
| const Sequelize = require('sequelize'); | |
| const sequelize = new Sequelize({ | |
| dialect: 'sqlite', | |
| storage: 'database.sqlite', | |
| }); |
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
| import Ember from 'ember'; | |
| let previousMouseX = 0; | |
| let previousMouseY = 0; | |
| let mouseXInImage = 0; | |
| let mouseYInImage = 0; | |
| let scale = 1; | |
| const zoomSpeed = 0.1; | |
| export default Ember.Component.extend({ |
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
| query IntrospectionQuery { | |
| __schema { | |
| queryType { | |
| name | |
| } | |
| types { | |
| ...FullType | |
| } | |
| } | |
| } |
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
| MongoDB: | |
| image: sameersbn/mongodb:latest | |
| ports: | |
| - "27017:27017" | |
| volumes: | |
| - ./data/mongodb:/var/lib/mongodb |
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
| 'use strict'; | |
| import Ember from 'ember'; | |
| import SmartViewMixin from 'client/mixins/smart-view-mixin'; | |
| export default Ember.Component.extend(SmartViewMixin, { | |
| router: Ember.inject.service('-routing'), | |
| store: Ember.inject.service(), | |
| conditionAfter: null, | |
| conditionBefore: null, | |
| loaded: false, |
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
| import Ember from 'ember'; | |
| import SmartViewMixin from 'client/mixins/smart-view-mixin'; | |
| export default Ember.Component.extend(SmartViewMixin.default, { | |
| router: Ember.inject.service('-routing'), | |
| store: Ember.inject.service(), | |
| actions: { | |
| selectTreatment(patientId) { | |
| const treatmentCollection = this.findCollectionByName('treatment'); | |
| const treatmentCollectionId = treatmentCollection[0].get('id'); |
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
| <!-- config/forest.php --> | |
| <?php | |
| return [ | |
| 'secret_key' => '7a3049f8cd14e719c219e6d75e2a7715eef38bf6ec4be2ffc774a3374c9196a8', | |
| 'auth_key' => 'l8oeFltNrdrbq6pPeEGzxbG47h2qCK46', | |
| 'models_path' => 'app', | |
| 'url' => 'http://localhost:3001', | |
| 'debug_mode' => true, | |
| 'actions' => [ |
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
| openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 10000 -nodes |
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
| "repositories": [ | |
| { | |
| "type": "path", | |
| "url": "/Users/arnaud/dev/forest/repos/forest-laravel", | |
| "options": { | |
| "symlink": true | |
| } | |
| } | |
| ], | |
| "require": { |