Skip to content

Instantly share code, notes, and snippets.

View juanpabloprado's full-sized avatar
🛖
Working From Hut

Juan Pablo Prado juanpabloprado

🛖
Working From Hut
View GitHub Profile
@juanpabloprado
juanpabloprado / clone.sh
Created August 25, 2023 18:47 — forked from mraible/clone.sh
Use JHipster's main branch
git clone https://github.com/jhipster/generator-jhipster.git --depth=1
cd generator-jhipster
npm i
npm link
@juanpabloprado
juanpabloprado / jetbrains-live-templates.md
Last active September 22, 2021 19:22 — forked from kmcquade/jetbrains-live-templates.md
My Intellij Live Templates || VSCode Code snippets for Terraform
@juanpabloprado
juanpabloprado / docker-compose.yml
Created October 28, 2020 14:59 — forked from pantsel/docker-compose.yml
example docker-compose.yml for kong, postgres and konga
version: "3"
networks:
kong-net:
driver: bridge
services:
#######################################
# Postgres: The database used by Kong
@juanpabloprado
juanpabloprado / config.xml
Created October 13, 2019 22:36 — forked from g0t4/config.xml
Module 2 - What am I? Get this job loaded into Jenkins and running, there are two problems you'll encounter. Raw
<?xml version='1.0' encoding='UTF-8'?>
<project>
<actions/>
<description></description>
<keepDependencies>false</keepDependencies>
<properties/>
<scm class="hudson.plugins.git.GitSCM" plugin="git@2.5.2">
<configVersion>2</configVersion>
<userRemoteConfigs>
<hudson.plugins.git.UserRemoteConfig>
@juanpabloprado
juanpabloprado / Dockerfile
Created October 9, 2019 05:57 — forked from ju2wheels/Dockerfile
Docker Dockerfile reference template
# Last updated: 08/24/2916
#
# Total instructions available: 18
#
# https://docs.docker.com/engine/reference/builder/
#
# You can use a .dockerignore file in the same context directory as
# your Dockerfile to ignore files in the context before sending them
# to the Docker daemon for building to speed up building.
@juanpabloprado
juanpabloprado / nginx.conf
Created October 8, 2016 22:13 — forked from A5hleyRich/nginx.conf
Hosting WordPress Yourself Part 1 – Installing Nginx, PHP and MySQL
user ashley;
worker_processes 1;
pid /run/nginx.pid;
events {
worker_connections 1024;
multi_accept on;
}
http {