Skip to content

Instantly share code, notes, and snippets.

View lleitep3's full-sized avatar
🏠
Working from home

Leandro (Hey Man) lleitep3

🏠
Working from home
View GitHub Profile
@wesleywillians
wesleywillians / deployment.yaml
Created April 3, 2021 01:17
Live Esquenta K8s
apiVersion: apps/v1
kind: Deployment
metadata:
name: esquenta
spec:
selector:
matchLabels:
app: esquenta
replicas: 10
template:
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 31, 2024 07:07
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@lleitep3
lleitep3 / bootstrap.php
Created May 16, 2011 13:05
my default bootstrap
<?php
session_start();
date_default_timezone_set ('America/Sao_Paulo');
define ('DS', DIRECTORY_SEPARATOR);
define ('URL', "http://".$_SERVER['SERVER_NAME']);
define ('ENVIRONMENT' , 'DEV');
spl_autoload_register('autoload');