2024-02-05 00:31:37 +00:00
|
|
|
# Word Salad - Yet Another Blog
|
|
|
|
|
### Author: Jonathan Nielson
|
|
|
|
|
|
2024-08-04 04:47:00 +00:00
|
|
|
# Install
|
|
|
|
|
Install all PHP dependencies by running the following from the root of the project:
|
|
|
|
|
```bash
|
|
|
|
|
composer install
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Copy the .env.example file to set a new file for this env
|
|
|
|
|
```bash
|
|
|
|
|
cp .env.example .env
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Create a new application key:
|
|
|
|
|
```bash
|
|
|
|
|
php artisan key:generate
|
|
|
|
|
```
|
|
|
|
|
|
2024-02-05 00:31:37 +00:00
|
|
|
# Run
|
|
|
|
|
To run the project, use the PHP 8.3 development server by running the following
|
|
|
|
|
command from the root of the project:
|
|
|
|
|
```bash
|
|
|
|
|
php artisan serve
|
2024-08-04 04:47:00 +00:00
|
|
|
```
|