https://github.com/mrepol742/laravel-react-ts-template
I did it so you don't have to (with typescript)
https://github.com/mrepol742/laravel-react-ts-template
bootstrap laravel react template-project typescript
Last synced: 2 months ago
JSON representation
I did it so you don't have to (with typescript)
- Host: GitHub
- URL: https://github.com/mrepol742/laravel-react-ts-template
- Owner: mrepol742
- Created: 2026-04-02T00:34:25.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2026-04-07T12:48:34.000Z (3 months ago)
- Last Synced: 2026-04-07T14:51:59.670Z (3 months ago)
- Topics: bootstrap, laravel, react, template-project, typescript
- Language: PHP
- Homepage:
- Size: 199 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# laravel-react-ts-template
I did it so you don't have to (with typescript)
## Setting up
- install dependecies
```
composer install && npm install
```
- create environment
```
cp .env.example .env
```
- generate app key
```
php artisan key:generate
```
- database migration
```
php artisan migrate
php artisan db:seed
```
# Start application
- start vite
```
npm run dev
```
- start laravel
```sh
php artisan serve
```
## Refresh migration
```
php artisan migrate:refresh
php artisan db:seed
```
## Optimize
```
php artisan optimize
```