Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/krzysztoff1/lavarel-nuxt-links
https://github.com/krzysztoff1/lavarel-nuxt-links
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/krzysztoff1/lavarel-nuxt-links
- Owner: krzysztoff1
- Created: 2024-03-25T19:05:16.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-28T07:46:02.000Z (10 months ago)
- Last Synced: 2024-11-21T16:42:23.307Z (2 months ago)
- Language: PHP
- Homepage: https://k-duda-linkhouse.vercel.app
- Size: 240 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:
```bashbun 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
```