Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/musikele/vagrant-magento2
a vagrant image that will launch magento2.
https://github.com/musikele/vagrant-magento2
magento2 vagrant
Last synced: 12 days ago
JSON representation
a vagrant image that will launch magento2.
- Host: GitHub
- URL: https://github.com/musikele/vagrant-magento2
- Owner: musikele
- License: apache-2.0
- Created: 2017-02-15T16:59:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-22T14:50:28.000Z (almost 8 years ago)
- Last Synced: 2023-08-26T10:11:13.262Z (over 1 year ago)
- Topics: magento2, vagrant
- Language: Shell
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wordpress-magento2
A vagrant image of a Magento 2.x system.A big part of this configuration comes from [https://www.vultr.com/docs/installing-magento-2-on-ubuntu](https://www.vultr.com/docs/installing-magento-2-on-ubuntu).
> THIS IS NOT A PRODUCTION ENVIRONMENT. THIS IS NOT "SECURE". USE IT ONLY FOR DEVELOPMENT
## start
Magento is a bit complex with trying to install. You have to register in order to download the code from theier website.
Go to [http://devdocs.magento.com/guides/v2.0/install-gde/prereq/connect-auth.html](http://devdocs.magento.com/guides/v2.0/install-gde/prereq/connect-auth.html) and generate your authentication keys.
Then, rename the file `auth_template.json` in `auth.json` and fill with your data.
At this point you can launch:
```
vagrant up
```The first time it can take even 10 minutes to work. Once you're ready go to [http://127.0.0.1:8080/setup] and start the installation.
> **Don't use localhost as a host**, go in System settings and change as soon as you can.
## To copy your plugins
put your plugins unzipped in the `plugins` folder. They will be copied over magento's `app/code/` directory.
To install the plugin you have to launch this command:
```
$ php bin/magento setup:up
```## sensitive informations
database user is `root`, password is `password`.
database name is `magento`.
## What does it contain
an ubuntu image with a mysql server and Magento2, all at the latest available version (as of Feb, 9, 2016).