Skip to content
Piotr Grabowski edited this page Oct 7, 2016 · 3 revisions

Wikia Status Page

./afterdeploy is a script that clears all cache and re-compiles the php code for optimization.

to install & run:

  1. copy .env.example to .env and fill out the required parameters
  2. then:
  • ./composer.phar install to load all vendor libraries
  • php artisan key:generate to generate a key inside .evn file
  • php artisan migrate creates the database tables
  • php artisan serve
  • php artisan config:clear comes in handy whenever you change any settings inside the config directory or .env file

another thing about the .env file is

APP_ENV=dev

APP_DEBUG=true

might come in handy as well ;)

No User?

$ php artisan tinker
>>> \CachetHQ\Cachet\Models\User::create([
    "username"=>"admin","password"=>"test","active"=>1, "level"=>1,"email"=>"me@fandom.com"
]);
Clone this wiki locally