generator-boness
v2.2.0
Published
Yeoman generator that scaffolds a Skinn web project.
Readme
Boness Generator
Yeoman generator that scaffolds a Skinn web project.
Getting Started
1. Setting up Vagrant
- Create a new project folder.
- Add details of your new project to your Homestead.yaml.
sites:
- map: example.skinn.local
to: /home/vagrant/Code/example.skinn.local/public
databases:
- example- Create a new entry in your /etc/hosts file.
192.168.10.10 example.skinn.local- Reload your vagrant:
vagrant reload --provision.
2. Running the generator
- SSH into your virtual machine:
vagrant sshand navigate to your project folder. - Install both Yeoman and this generator (if you haven't already):
npm i -g yo generator-boness. - Run the generator:
yo boness.
3. Prepare your database
- Find and open the
.envfile in the root folder of your project. - Enter your database configuration. Save and close.
- Run migrations:
artisan migrate. - Apply seeding:
artisan db:seed
