Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryan-haskell/elm-inertia-laravel-starter
Use Laravel and Elm together with Inertia.js!
https://github.com/ryan-haskell/elm-inertia-laravel-starter
elm inertiajs laravel
Last synced: about 1 month ago
JSON representation
Use Laravel and Elm together with Inertia.js!
- Host: GitHub
- URL: https://github.com/ryan-haskell/elm-inertia-laravel-starter
- Owner: ryan-haskell
- Created: 2024-06-13T00:51:38.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-13T15:53:21.000Z (7 months ago)
- Last Synced: 2024-10-20T00:31:11.640Z (2 months ago)
- Topics: elm, inertiajs, laravel
- Language: Elm
- Homepage:
- Size: 1.56 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# elm-inertia-laravel-starter
Use Laravel and Elm together with Inertia.js!
![A walkthrough of our Elm + Laravel app](./elm-laravel-starter-demo.gif)
### Local development
Dependency | How to check
--- | ---
[Composer v2.7.6+ and PHP v8.3.7+](https://herd.laravel.com/) | `composer -V` `php -v`
[sqlite v3.43.2+](https://sqlite.org/) | `sqlite --version`
[Node.js v20.14.0+](https://nodejs.org/) | `node -v````sh
# Install PHP and Node dependencies
composer install
npm install# Run the server at http://localhost:8000
npm run dev
```