Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure(2) do |config| | |
| config.vm.box = "centos-65-x64" | |
| config.vm.network "forwarded_port", guest: 3306, host: 3306 | |
| config.vm.network "private_network", ip: "192.168.56.101" | |
| config.vm.provider "virtualbox" do |vb| |
| # Este unifica o estilo de código para diferentes editores e IDEs | |
| # This unifies the coding style for differents editors and IDEs | |
| # editorconfig.org | |
| root = true | |
| [*] | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true |
| server { | |
| charset utf-8; | |
| listen 80; | |
| server_name localhost; | |
| root path-to-project/public; | |
| index index.html index.php; | |
| access_log path-to-project/storage/local/nginx.access.log; |
I hereby claim:
To claim this, I am signing this object:
| declare namespace Phaser { | |
| interface Scene { | |
| dragonBone: dragonBones.phaser.plugin.DragonBonesScenePlugin; | |
| } | |
| namespace Loader { | |
| interface LoaderPlugin { | |
| dragonbone: ( |
| # Moved to this repository: https://github.com/glaucomorais/docky |
| #!/bin/bash | |
| # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
| # # | |
| # ShellColors v1.0 # | |
| # # | |
| # Define SGR constants to format bash scripts. # | |
| # # | |
| # Author: Glauco Morais (https://git.io/JB8nU) # | |
| # License: MIT # |
| #!/bin/bash | |
| # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
| # # | |
| # PlantUML Docker v1.1 # | |
| # # | |
| # Script to run a PlantUML in a Docker container. # | |
| # # | |
| # Author: Glauco Morais (https://git.io/JB8Z8) # | |
| # License: MIT # |