This file contains 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 my_http_servers { | |
server 127.0.0.1:5000; # httpServer2 listens to port 5000 | |
} | |
server { | |
listen 80; | |
server_name 67.207.86.191; | |
root /var/www/sistemagestionProyecto/public; | |
add_header X-Frame-Options "SAMEORIGIN"; |
This file contains 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
SELECT row_to_json(r) FROM table_name AS r; | |
select json_agg(t) FROM (SELECT * from table_name) t; |
This file contains 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=Config::all(); | |
$setting = []; | |
foreach($config as $value){ | |
$setting[$value->key]=$value->value; | |
} |
This file contains 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
error_log(json_encode($data, JSON_PRETTY_PRINT)); | |
OR | |
>config\app.php | |
'providers' => [ | |
//other providers | |
App\Providers\ConsoleOutputServiceProvider::class |
This file contains 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
Route | |
// Home page | |
Route::get('/', [ | |
'as' => 'home', | |
'uses' => 'PageController@index' | |
]); | |
// Catch all page controller (place at the very bottom) | |
Route::get('{slug}', [ |
This file contains 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
//Instalamos | |
composer require fruitcake/laravel-cors | |
//Agregamos esta linea al archivo app/Http/Kernel.php | |
//en "protected $middleware" | |
\Fruitcake\Cors\HandleCors::class, | |
//Creamos arvhivo de conficuración | |
php artisan vendor:publish --tag="cors" |
This file contains 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 App\Article; | |
Route::get('articles', function() { | |
// If the Content-Type and Accept headers are set to 'application/json', | |
// this will return a JSON structure. This will be cleaned up later. | |
return Article::all(); | |
}); | |
Route::get('articles/{id}', function($id) { | |
return Article::find($id); |
This file contains 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 React from 'react' | |
import PropTypes from 'prop-types'; | |
const Modal = ({title, children, handleCancelModal, handleOkModel, buttons, cancelText, okText, width}) => { | |
let widthSize = { maxWidth: width || 0 } | |
return ( | |
<div className="modal fade show" style={{paddingRight: '17px', display: 'block', backgroundColor: 'rgba(255, 255, 255, 0.7)'}}> | |
<div className="modal-dialog" role="document" style={width ? widthSize : {}}> | |
<div className="modal-content"> | |
{ |
This file contains 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 Request = require("request"); | |
const Payment = require('../models/payment.model'); | |
const uuidv4 = require('uuid').v4; | |
exports.payment = (req, res) => { | |
console.log('----------------------------------------------------------------------------------------'); | |
console.log(req.body); | |
let {username, card_number, cvv, expiration_month, expiration_year, email, amount } = req.body; | |
Request.post({ | |
"headers": { "content-type": "application/json", "Authorization": "Bearer pk_test_drKwjGYg4zn3oNyP" }, |
This file contains 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
echo fs.inotify.max_user_watches=582222 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p |