azk
is a tool that assists web developers in the creation, maintenance and isolation of development environments through automation. You will be able to easily and quickly create isolated environments to many projects in almost any development stack. Automation happens by the use of simple scripts and images.
- Images: via Docker Index or custom inline or file scripts
- Built in load-balancer
- Built in file sync
- Automatic start-up (and reload) script
- Logging
Works on Linux & Mac OS X (requires 64 bit platform in both cases)
azk
is based on the concept of System of Systems. Accordingly, applications (your code), services and workers (such as databases, webservers and queue systems) are treated as systems that communicate with each other and together make the primary system. Using this paradigm, azk
installs and manages development environments. While this may seem overkill at first, it actually makes it a lot easier to manage the development and execution environments of an application (in its parts - the "systems" - or in its entirety - the full "system of systems").
In order to automate the provisioning of development environments, azk
uses pre-built custom images. These images follow the Docker standard and can be found in: Docker Index or Dockerfile.
Azkfile.js
files are the cornerstone of how to use azk
. These simple manifest files describe the systems that make your system of systems as well as the images used in their execution. They also describe parameters and execution options.
Full Azkfile.js example
If you are starting a new application project, you can already use azk
to obtain the proper runtime as well the corresponding generators for your chosen language and then generate the application's basic strutucre. An example in node.js would look like this:
$ cd ~/projects
$ azk shell --image dockerfile/node # obtaining the runtime
# mkdir app-name
# npm init # building the application's basic structure
...
# exit
$ cd app-name
$ azk init
azk: 'Azkfile.js' generated
$ azk up
When you already have an application project going on and wants to use azk
to streamline its development environment, all you have to do is as follows below:
$ cd [my_application_folder]
$ azk init
azk: 'Azkfile.js' generated
$ azk up
- Mac OS X (requires 64 bit platform) (Linux and Windows: planned)
- git, curl, bash
- Internet connection (to download images)
It is necessary to install Virtualbox and an extra tool for file synchronization:
- VirtualBox, version 4.3.6+ (VMware: planned)
- unfs3 (to share files between your machine and the virtual machine)
Using Homebrew Cask? It makes installing VirtualBox super easy!
brew cask install virtualbox --appdir=/Applications
brew install unfs3
- Check out
azk
into~/.azk
.
$ git clone -b stable https://github.com/azukiapp/azk.git ~/.azk
- Add
~/.azk/bin
to your $PATH for access to theazk
command-line utility.
$ echo 'export PATH="$HOME/.azk/bin:$PATH"' >> ~/.bash_profile
# and reload
$ source ~/.bash_profile
Ubuntu Desktop note: Modify your ~/.bashrc
instead of ~/.bash_profile
.
Zsh note: Modify your ~/.zshrc
file instead of ~/.bash_profile
.
- Install depedencies and configure vm (will download ~130MB):
$ azk check-install
- Run
azk-agent
in a terminal:
$ azk agent start
- Enjoy
$ azk help
Coming soon...
$ cd ~/.azk
$ azk agent stop
$ azk update
$ azk agent start
// Adds the systems that shape your system
systems({
'node-example': {
// Dependent systems
depends: ["db"],
// More images: http://images.azk.io
image: "dockerfile/nodejs",
// Steps to execute before running instances
provision: [
"npm install",
],
workdir: "/azk/#{manifest.dir}",
command: "node index.js",
// Mounts folders to assigned paths
mount_folders: {
".": "/azk/#{manifest.dir}",
},
// Start with 2 instances
scalable: { default: 2}
// Set hostname to use in http balancer
http: {
// node-example.dev.azk.io
hostname: "#{system.name}.#{azk.default_domain}",
},
envs: {
// Exports global variables
NODE_ENV: "dev",
}
},
db: {
image: "dockerfile/mariadb"
// Activates a persistent data folder in '/data'
persistent_folders: ["/data"],
}
});
// Sets a default system (to use: start, stop, status, scale)
setDefault("node-example")
# Control azk agent
$ azk agent start --daemon # Starts azk agent in background
$ azk agent status # Shows azk agent status
$ azk agent stop # Stops azk agent
# Create initial Azkfile.js
$ azk init [project_path]
# Run a shell in instances context
$ azk shell # Runs shell in default system
$ azk shell -c "ls -l /" # Runs specific command
$ azk shell -m ~/:/azk/user # Running with aditional mounting
# Run a shell in arbitrary image
$ azk shell -i busybox # Runs a shell in arbitrary imagem
# Run background systems (Azkfie.js#systems)
$ azk start # Starts all systems
$ azk start [system_name,...] # Starts specific systems
$ azk stop # Stops specific service
$ azk status # Displays all systems statuses
$ azk stop [system_name,...] # Stops specific systems by names
$ azk scale [system_name,...] 5 # Starts 5 instances of specific systems
Note that running these tests requires you to have azk agent
running.
$ cd ~/.azk
$ azk nvm npm install
$ azk nvm grunt test
"Azuki", "Azk" and the Azuki logo are copyright (c) 2013 Azuki Serviços de Internet LTDA.
Azk source code is released under Apache 2 License.
Check LEGAL and LICENSE files for more information.