Can you believe it? It's another blog. This time with Laravel + HTMX.
Go to file
Jonathan Nielson ebcdf7e324 feat: add links from homepage to individual articles 2025-03-19 17:08:56 -05:00
app Feat: Get basic live-preview article working with HTMX 2024-08-16 17:46:59 -05:00
bootstrap Initial Commit 2024-02-04 17:42:51 -06:00
config WIP: Add basic Neumorphic design and organize blades 2024-08-04 14:09:28 -05:00
database fix: limit articles shown at homepage to published articles only 2025-03-19 16:52:49 -05:00
public WIP: Semi-complete authentication including several writer view stubs 2024-08-04 16:38:41 -05:00
resources feat: add links from homepage to individual articles 2025-03-19 17:08:56 -05:00
routes fix: limit articles shown at homepage to published articles only 2025-03-19 16:52:49 -05: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