Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/danestves/chirper


https://github.com/danestves/chirper

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Chirper

This project was made using the Laravel framework learning from [https://bootcamp.laravel.com/](https://bootcamp.laravel.com/)

Technologies used:


Laravel


Livewire


Tailwind

## Installation

Please check the official laravel installation guide for server requirements before you start. [Official Documentation](https://laravel.com/docs)

Clone the repository

```bash
git clone https://github.com/danestves/chirper.git
```

Switch to the repo folder

```bash
cd chirper
```

Install dependencies

```bash
composer install
bun install
```

Copy .env.example to .env

```bash
cp .env.example .env
```

Generate application key

```bash
php artisan key:generate
```

Run database migrations

```bash
php artisan migrate
```