This is the source code of my blog, made with Jigsaw and TailwindCSS. You can read more about this site here in my blog.
After cloning or downloading this repo, install the dependencies:
composer install
npm run dev
Don't forget to modify the config of the site, specially the base url:
return [
'baseUrl' => 'http://kennyhorna.test', // <--
'production' => false,
'siteName' => "Kenny Horna.",
'siteDescription' => 'Un lugar donde comparto las cosas que me interesan.',
'siteAuthor' => 'Kenny Horna',
// ...
]
After this, you should be able to preview the site.
To generate the production files, first, change your specific details in the production file config.production.php
:
<?php
return [
'baseUrl' => 'https://kennyhorna.com',
'production' => true,
];
Then, just run:
npm run production
I wrote an article about this, you can find it on my site: kennyhorna.com.