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: 5 months ago
JSON representation
Yet another todo list powered by Tailwind, Alpine.js, Livewire, and Laravel aka TALL stack
- Host: GitHub
- URL: https://github.com/farshad-hasanpour/plantodo
- Owner: Farshad-Hasanpour
- License: mit
- Created: 2024-07-12T12:57:53.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-05-31T18:08:25.000Z (about 1 year ago)
- Last Synced: 2025-05-31T23:32:21.823Z (about 1 year ago)
- Topics: alpine, laravel, livewire, tailwind, tall-stack, todolist
- Language: PHP
- Homepage: https://plantodo.ir
- Size: 5.14 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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```