https://github.com/gbevan/vagrant-meanio
Pre-init'ed MEAN-CLI AppServer for use in development with Vagrant
https://github.com/gbevan/vagrant-meanio
Last synced: over 1 year ago
JSON representation
Pre-init'ed MEAN-CLI AppServer for use in development with Vagrant
- Host: GitHub
- URL: https://github.com/gbevan/vagrant-meanio
- Owner: gbevan
- License: mit
- Created: 2015-02-12T15:08:19.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-11-01T21:13:06.000Z (over 9 years ago)
- Last Synced: 2025-01-20T21:49:21.725Z (over 1 year ago)
- Language: Shell
- Size: 21.5 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
vagrant-meanio
==============
A pre-built and initialised MEAN (http://mean.io) app server for development with Vagrantfile.
### Example Vagrantfile:
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "meanproj", primary: true do |meanproj|
meanproj.vm.synced_folder "src/", "/home/vagrant/appserver/packages/custom"
meanproj.vm.provider "docker" do |d|
d.image = "gbevan/vagrant-meanio:devel"
d.has_ssh = true
d.ports = ["3000:3000", "3443:3443"]
end
end
end
Maps your project's src/ folder to ```appserver/packages/custom```.
### Run:
$ vagrant up --provider=docker
### Tags:
* latest - currently still maps to the 12 month old version with v0.4.2 of mean.io
* devel - building from mean.io's master branch