Feat: Improve README.md to have installation instructions
This commit is contained in:
parent
b1fb5f09b7
commit
8d12ba96a4
16
README.md
16
README.md
|
|
@ -1,6 +1,22 @@
|
||||||
# Word Salad - Yet Another Blog
|
# Word Salad - Yet Another Blog
|
||||||
### Author: Jonathan Nielson
|
### Author: Jonathan Nielson
|
||||||
|
|
||||||
|
# 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
|
||||||
|
```
|
||||||
|
|
||||||
# Run
|
# Run
|
||||||
To run the project, use the PHP 8.3 development server by running the following
|
To run the project, use the PHP 8.3 development server by running the following
|
||||||
command from the root of the project:
|
command from the root of the project:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue