https://github.com/jedymatt/tall-blog
TALL Stack Blog
https://github.com/jedymatt/tall-blog
alpinejs blog collaborate ghdesktop github javascript jetbrains laravel livewire php student-vscode tall-stack
Last synced: 3 months ago
JSON representation
TALL Stack Blog
- Host: GitHub
- URL: https://github.com/jedymatt/tall-blog
- Owner: jedymatt
- Created: 2022-04-10T12:22:40.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-07T19:45:16.000Z (about 3 years ago)
- Last Synced: 2026-02-06T13:48:11.555Z (5 months ago)
- Topics: alpinejs, blog, collaborate, ghdesktop, github, javascript, jetbrains, laravel, livewire, php, student-vscode, tall-stack
- Language: PHP
- Homepage:
- Size: 1010 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TAll Stack Blog
## Demo
## Prerequisites
* XAMPP on windows
## Run Locally
Clone the repository and then go to tall-blog directory by running these commands:
```shell
git clone https://github.com/jedymatt/tall-blog.git
cd tall-blog
```
Then, configure the .env file according to your use case.
Install the dependencies
```shell
composer install
npm install
```
Generate .env file
```shell
cp .env.example .env
# or this if you plan to use sail:
php artisan env-sail
```
Populate the tables and the data to the database
```shell
php artisan migrate --seed
```
Generate app key
```shell
php artisan key:generate
```
Run the application
Start the server:
```shell
php artisan serve
```
Start vite server
```shell
npm run dev
```
Finally, visit http://localhost:8000 to view the site.