Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danestves/chirper
https://github.com/danestves/chirper
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/danestves/chirper
- Owner: danestves
- Created: 2024-04-14T22:07:11.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-20T19:14:29.000Z (9 months ago)
- Last Synced: 2024-10-29T20:37:43.354Z (2 months ago)
- Language: PHP
- Size: 109 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:
## 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
```