Skip to content

Instantly share code, notes, and snippets.

@jdecode
Created April 10, 2024 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdecode/0a84359ae966a6c4b5aedd764c489d9b to your computer and use it in GitHub Desktop.
Save jdecode/0a84359ae966a6c4b5aedd764c489d9b to your computer and use it in GitHub Desktop.
Laravel + Statamic + Blogo + SSG

Laravel (10.x, at the time of writing this)

Statamic:

  • composer.json
"post-autoload-dump": [
    "@php artisan statamic:install --ansi"
],
  • config/filesystems.php
'assets' => [
    'driver' => 'local',
    'root' => public_path('assets'),
    'url' => '/assets',
    'visibility' => 'public',
],
  • composer require statamic/cms --with-dependencies
  • php artisan statamic:pro:enable
  • php artisan statamic:auth:migration
  • php artisan migrate

Blogo Starter Kit:

  • php please starter-kit:install afan417/blogo-starter-kit --clear-site
  • npm install
  • npm run build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment