Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Nanobox | 1,432 | 4 years ago | 19 | October 21, 2019 | 78 | mit | Go | |||
The ideal platform for developers | ||||||||||
Awsbox | 800 | 155 | 3 | 4 years ago | 53 | February 10, 2014 | 33 | other | JavaScript | |
A featherweight PaaS on top of Amazon EC2 for deploying node apps | ||||||||||
Template Building Blocks | 325 | a year ago | 19 | December 21, 2020 | other | JavaScript | ||||
A tool for deploying Azure infrastructure based on proven practices. Azure building blocks take advantage of the Azure CLI and Azure Resource Manager templates to provision collections of resources as logical units with production-ready settings. | ||||||||||
Definitive_guide_to_django_deployment | 312 | 7 years ago | 5 | other | Ruby | |||||
A guide to best practices in production Django deployment, plus a set of Chef scripts to create a solid configuration. | ||||||||||
Deploy Ibm Cloud Private | 263 | 2 years ago | 96 | other | HCL | |||||
Instructions and Code required to install IBM Cloud Private | ||||||||||
Alpine Make Vm Image | 248 | 10 days ago | 7 | mit | Shell | |||||
Make customized Alpine Linux disk image for virtual machines | ||||||||||
Terraform Google Github Actions Runners | 144 | 9 days ago | 6 | apache-2.0 | HCL | |||||
Creates self-hosted GitHub Actions Runners on Google Cloud | ||||||||||
Moodle | 129 | 2 days ago | 44 | mit | Shell | |||||
Tooling and guidance on deploying Scalable Moodle Clusters on Azure. | ||||||||||
Terraform Vsphere Kubespray | 127 | 3 years ago | 11 | apache-2.0 | HCL | |||||
Deploy a Kubernetes HA cluster on VMware vSphere | ||||||||||
Albatross | 127 | 13 days ago | 6 | isc | OCaml | |||||
Albatross: orchestrate and manage MirageOS unikernels with Solo5 |
This repo contains a Vagrantfile
for automated deployment for MobileInsight development. It configures a Ubuntu 16.04 virtual machine contains MobileInsight repos using Vagrant and VirtualBox. It installs mobileinsight-core
, mobileinsight-mobile
and python-for-android
on the VM, so that you can login and perform offline analysis of cellular traces, and compile the mobile version of MobileInsight.
Download this repo and put it the Vagrantfile
under your development path, say /path/to/dev
. Run vagrant up
and install the virtual image (depending on the network and CPU speed, the installation may take half hour or longer.).
git clone https://github.com/mobile-insight/mobileinsight-dev.git /path/to/dev
cd /path/to/dev
vagrant up
It will run and compile a MobileInsight apk, and run an offline MobileInsight analysis example at the end (you should be able to see the decoded messages).
When the process finish install and returns the shell, a MobileInsight app is already compiled and copied to your path (/path/to/dev
). You can install it on supported Android phone and try it out immediately using adb
.
adb install MobileInsight-5.0.0-debug.apk
You can stop the virtual machine using either command:
vagrant suspend (suspends the machine)
vagrant halt (stops the vagrant machine)
To log into the virtual machine, use the following command
vagrant up (if the VM has been stopped)
vagrant ssh
All MobileInsight related repos are under /home/vagrant/mi-dev
folder, which you can access by
cd mi-dev
The /vagrant
folder in VM is a special folder. It is the synced folder between the VM and your host machine, see more details here.
When you modify the mobileinsight-core
codes, you can locally debug it without commiting to GitHub.
First, apply the local debug patch to python-for-android
and reinstall:
cd ~/mi-dev
patch -p1 < p4a.patch
cd python-for-android
sudo python setup.py install
Next, modify mobileinsight-core
codes as needed, and then reinstall:
cd ~/mi-dev/mobileinsight-core
./install-ubuntu.sh
If you wish to add your own plugin and compile it into the MobileInsight apk, you may put your plugin folder under the mobileinsight-mobile/app/plugins/
folder.
For details on how to write the plugin, please refer to the tutorial on the MobileInsight website.
To compile a new apk, run make command again:
make apk_debug
If you wish to incorporate the changes from the mobileinsight-core
codes as well, you need to clean and recompile the distribution first:
make clean_dist
make dist
We love pull requests and discussing novel ideas. You can open issues here to report bugs. Feel free to improve MobileInsight and become a collaborator if you are interested.
The following Slack group is used exclusively for discussions about developing the MobileInsight and its sister projects:
For other advanced topics, please refer to the wiki and the MobileInsight website.