Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 24 days ago
JSON representation
TALL Stack Blog
- Host: GitHub
- URL: https://github.com/jedymatt/tall-blog
- Owner: jedymatt
- Created: 2022-04-10T12:22:40.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-07T19:45:16.000Z (over 1 year ago)
- Last Synced: 2024-10-30T03:30:34.234Z (2 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.gitcd tall-blog
```Then, configure the .env file according to your use case.
Install the dependencies
```shell
composer installnpm 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.