Can you believe it? It's another blog. This time with Laravel + HTMX.
Go to file
Jonathan Nielson d91b49275f Feat: Add factories and basic seeder 2024-08-03 23:49:42 -05:00
app Feat: Add factories and basic seeder 2024-08-03 23:49:42 -05:00
bootstrap Initial Commit 2024-02-04 17:42:51 -06:00
config Feat: Swap the template page for the stub of a home page 2024-02-04 18:52:19 -06:00
database Feat: Add factories and basic seeder 2024-08-03 23:49:42 -05:00
public Feat: Include HTMX as a local file 2024-08-03 23:48:20 -05:00
resources Feat: Swap the template page for the stub of a home page 2024-02-04 18:52:19 -06:00
routes Feat: Swap the template page for the stub of a home page 2024-02-04 18:52:19 -06:00
storage Initial Commit 2024-02-04 17:42:51 -06:00
tests Initial Commit 2024-02-04 17:42:51 -06:00
.editorconfig Initial Commit 2024-02-04 17:42:51 -06:00
.env.example Chore: Cleanup sample .env to just what I expect to use 2024-02-04 19:09:36 -06:00
.gitattributes Initial Commit 2024-02-04 17:42:51 -06:00
.gitignore Initial Commit 2024-02-04 17:42:51 -06:00
README.md Feat: Improve README.md to have installation instructions 2024-08-03 23:47:00 -05:00
artisan Initial Commit 2024-02-04 17:42:51 -06:00
composer.json Initial Commit 2024-02-04 17:42:51 -06:00
composer.lock Initial Commit 2024-02-04 17:42:51 -06:00
phpunit.xml Initial Commit 2024-02-04 17:42:51 -06:00

README.md

Word Salad - Yet Another Blog

Author: Jonathan Nielson

Install

Install all PHP dependencies by running the following from the root of the project:

composer install

Copy the .env.example file to set a new file for this env

cp .env.example .env

Create a new application key:

php artisan key:generate

Run

To run the project, use the PHP 8.3 development server by running the following command from the root of the project:

php artisan serve