Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/farshad-hasanpour/plantodo
- Owner: Farshad-Hasanpour
- License: mit
- Created: 2024-07-12T12:57:53.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-09-27T17:17:12.000Z (about 1 month ago)
- Last Synced: 2024-10-31T05:05:06.324Z (8 days ago)
- Topics: alpine, laravel, livewire, tailwind, tall-stack, todolist
- Language: PHP
- Homepage: https://plantodo.ir
- Size: 5.11 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```