Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.41 KB

readme.md

File metadata and controls

36 lines (27 loc) · 1.41 KB

Artificer

Artificer Demo

Development setup

  1. git clone https://github.com/marcmascarell/artificer-demo Clones this repository
  2. php packer Will add the repositories you will have to work with in 'workbench' folder
  3. touch database/database.sqlite Creates the database. You can use whatever you want
  4. You maybe need to set some permissions
  5. php artisan migrate --seed Populates database with some fake data
  6. Serve the site
  7. Go to /admin. Should display Artificer's install page
  8. Click "Start" button.
  9. Login in with username: artificer, password: artificer

##Permissions

If you are using the Homestead virtual machine, these permissions should already be set.

chmod 775 -R bootstrap/cache chmod 775 -R storage

Serving the site

###PHP built-in server php artisan serve

###Homestead

  1. Run Laravel's Homestead
  2. vagrant ssh
  3. serve artificer.dev /home/vagrant/projects/artificer-demo/public (change path to your own)
  4. Add artificer.dev to your hosts file (Example: 192.168.10.10 artificer.dev IP could be different)
  5. Go to artificer.dev ensure all is working