mirror of https://github.com/MISP/misp-vagrant
Updated README.
parent
3a72694a69
commit
158dfdf711
11
README.rst
11
README.rst
|
@ -35,15 +35,18 @@ You can now edit the source code with your favorite editor and test it in your
|
||||||
browser. The only thing is to not forget to restart Apache in the VM after a
|
browser. The only thing is to not forget to restart Apache in the VM after a
|
||||||
modification.
|
modification.
|
||||||
|
|
||||||
If you do not want a development environment with synced folders:
|
If you do not want a development environment (and enable synced folders):
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
$ git clone https://github.com/MISP/misp-vagrant.git
|
$ git clone https://github.com/MISP/misp-vagrant.git
|
||||||
$ cd misp-vagrant/
|
$ cd misp-vagrant/
|
||||||
$ export MISP_ENV='demo'
|
$ export MISP_ENV='demo'
|
||||||
$ vagrant up
|
$ vagrant up
|
||||||
|
|
||||||
|
|
||||||
Modules activated by default in the VM:
|
Modules activated by default in the VM:
|
||||||
|
|
||||||
* `MISP galaxy <https://github.com/MISP/misp-galaxy>`_ (http://127.0.0.1:5000/taxonomies/index)
|
* `MISP galaxy <https://github.com/MISP/misp-galaxy>`_
|
||||||
* `MISP taxonomies <https://github.com/MISP/misp-taxonomies>`_ (http://127.0.0.1:5000/galaxies.json)
|
* `MISP taxonomies <https://github.com/MISP/misp-taxonomies>`_
|
||||||
* `MISP modules <https://github.com/MISP/misp-modules>`_ (curl -s http://127.0.0.1:6666/modules)
|
* `MISP modules <https://github.com/MISP/misp-modules>`_
|
||||||
|
|
|
@ -50,7 +50,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
if "#{MISP_ENV}" == "dev"
|
if "#{MISP_ENV}" == "dev"
|
||||||
disabled = false
|
disabled = false
|
||||||
vm_name.concat(" - DEV")
|
vm_name.concat(" - DEV")
|
||||||
|
|
||||||
end
|
end
|
||||||
config.vm.synced_folder "..", "/var/www/MISP",
|
config.vm.synced_folder "..", "/var/www/MISP",
|
||||||
owner: "www-data", group: "www-data", disabled: disabled
|
owner: "www-data", group: "www-data", disabled: disabled
|
||||||
|
|
Loading…
Reference in New Issue