Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/krzysztoff1/lavarel-nuxt-links


https://github.com/krzysztoff1/lavarel-nuxt-links

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

## Local Development
Create `.env` file in the `frontend` directory. Copy the contents of `.env.example`.
Create `.env` file in the `backend` directory. Copy the contents of `.env.example`.

**Frontend**


Navigate to the `frontend` directory and install the dependencies:
```bash

bun install
```
Start the development server on `http://localhost:3000`:
```bash
bun run dev
```

**Backend**


In the separate terminal, navigate to the `backend` directory and install the dependencies:
```bash
composer install
```
Key generation, migration, seeding, and starting the development server on `http://127.0.0.1:8000`.
```bash
php artisan key:generate && php artisan migrate && php artisan db:seed && php artisan serve
```