Skip to content

Instantly share code, notes, and snippets.

View Tmeister's full-sized avatar
🇲🇽
Working from home

Enrique Chavez Tmeister

🇲🇽
Working from home
View GitHub Profile
{
"version": 1.0,
"name": "podcast",
"primary_color": "",
"accent_color": "#0000ff",
"text_color": "",
"header": {
"header_img": "http://impactful.io/tutorize/app/assets/images/bg-header.jpg",
"title": "The About Page Path"
},
{
"version": 1.0,
"name": "podcast",
"primary_color": "",
"accent_color": "#0000ff",
"text_color": "",
"header": {
"header_img": "//impactful.io/tutorize/app/assets/images/bg-header.jpg",
"title": "Find the Best Online Niche for your Business"
},
{
"version": 1.0,
"name": "podcast",
"primary_color": "",
"accent_color": "#0000ff",
"text_color": "",
"header": {
"header_img": "//impactful.io/tutorize/app/assets/images/bg-header.jpg",
"title": "Find the Best Online Niche for your Business"
},
{
"version": 1.0,
"name": "podcast",
"primary_color": "",
"accent_color": "#0000ff",
"text_color": "",
"header": {
"header_img": "//impactful.io/tutorize/app/assets/images/bg-header.jpg",
"title": "Who is Your Customer?"
},
FROM dockerfile/nodejs
MAINTAINER Enrique Chavez <[email protected]>
# use changes to package.json to force Docker not to use the cache
# when we change our application's nodejs dependencies:
ADD package.json /tmp/package.json
RUN cd /tmp && npm install
RUN mkdir -p /opt/app && cp -a /tmp/node_modules /opt/app/
# From here we load our application's code in, therefore the previous docker
<?php
namespace App\Http\Middleware;
use Closure;
class CountryMiddleware
{
/**
* Handle an incoming request.
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
<?php
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* The application's global HTTP middleware stack.
<?php
namespace App\Http\Middleware;
use Closure;
class CountryMiddleware
{
/**
* Handle an incoming request.