Skip to content

Instantly share code, notes, and snippets.

View n0ni0's full-sized avatar

Antonio Jiménez n0ni0

  • OSF Digital
  • Chiclana de la Frontera
View GitHub Profile
@n0ni0
n0ni0 / .zshrc
Created December 26, 2019 20:01
Zshrc Config Docker
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
export TERM="xterm-256color"
# Path to your oh-my-zsh installation.
export ZSH="/root/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
@n0ni0
n0ni0 / Vagrantfile
Last active December 26, 2016 21:51
A simple LAMP vagrant file
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network :forwarded_port, host: 8080, guest: 80
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.synced_folder "./", "/var/www/html"
@n0ni0
n0ni0 / .travis.yml
Last active November 11, 2019 10:14
Travis-CI file for PHP/Symfony 3
# Project language
language: php
# Allows use container-based infrastructure
sudo: false
# Start mysql service
services:
- mysql