Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inmanturbo/event-sourced-laravel-jetstream
Laravel Jetstream example with spatie/laravel-event-sourcing, testing, formatting and linting ci, and vuepress docs template
https://github.com/inmanturbo/event-sourced-laravel-jetstream
aggregate event event-sourcing jetstream-laravel laravel projection sourcing
Last synced: 9 days ago
JSON representation
Laravel Jetstream example with spatie/laravel-event-sourcing, testing, formatting and linting ci, and vuepress docs template
- Host: GitHub
- URL: https://github.com/inmanturbo/event-sourced-laravel-jetstream
- Owner: inmanturbo
- License: mit
- Created: 2022-03-02T11:48:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-03-04T01:27:41.000Z (over 2 years ago)
- Last Synced: 2024-10-08T09:21:53.460Z (about 1 month ago)
- Topics: aggregate, event, event-sourcing, jetstream-laravel, laravel, projection, sourcing
- Language: JavaScript
- Homepage:
- Size: 1.17 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Getting Started
## Requirements
* php 8.1 or higher
* composer
* yarn or npm## Installation
```bash
git clone https://github.com/inmanturbo/event-sourced-laravel-jetstream.git
cd event-sourced-laravel-jetstream
composer install
npm install && npm run dev
```## Building Docs
* install vuepress
```bash
yarn global add vuepress
```* build (from root directory)
> Note:
> If you are on a late version of node and you get the error "error:0308010C:digital envelope routines::unsupported"
> you must first set node options with `export NODE_OPTIONS=--openssl-legacy-provider`
> If you are on windows or need more info see [This Issue](https://github.com/webpack/webpack/issues/14532)```bash
vuepress build docs
```