Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/farshad-hasanpour/plantodo

Yet another todo list powered by Tailwind, Alpine.js, Livewire, and Laravel aka TALL stack
https://github.com/farshad-hasanpour/plantodo

alpine laravel livewire tailwind tall-stack todolist

Last synced: 8 days ago
JSON representation

Yet another todo list powered by Tailwind, Alpine.js, Livewire, and Laravel aka TALL stack

Awesome Lists containing this project

README

        

# PlanToDo

Yet another todo list powered by Tailwind, Alpine.js, Livewire, and Laravel aka TALL stack.

## Website
You can see the project here:
[https://plantodo.ir/](https://plantodo.ir/)

## How to Run
Execute these two commands and open http://localhost:8000

- ```php artisan serve```
- ```npm run dev```

## How to Set Up
### Clone the Repository
```git clone https://github.com/Farshad-Hasanpour/plantodo.git```

### Navigate to the Project Directory
```cd plantodo```

### Install Composer Dependencies
```composer install```

### Set Up Environment Variables
```cp .env.example .env```

dont forget to update database connection info

### Generate an Application Key
```php artisan key:generate```

### Run Database Migrations
```php artisan migrate```

### Seed Database
```php artisan db:seed```

### Install NPM Dependencies
```npm install```

### Set Up Cron Jobs
set up a cron job to run ```php artisan app:reset-daily-habits``` every midnight.

e.g.
```0 0 * * * /usr/bin/php /path-to-your-project/artisan app:reset-daily-habits >> /dev/null 2>&1```