https://github.com/gsanchez1687/taskmanager
Task Mananger Laravel 10
https://github.com/gsanchez1687/taskmanager
aws bootstrap laravel mysql rds
Last synced: 3 months ago
JSON representation
Task Mananger Laravel 10
- Host: GitHub
- URL: https://github.com/gsanchez1687/taskmanager
- Owner: gsanchez1687
- Created: 2024-10-29T05:34:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-01T19:35:38.000Z (over 1 year ago)
- Last Synced: 2025-10-24T20:39:35.761Z (8 months ago)
- Topics: aws, bootstrap, laravel, mysql, rds
- Language: PHP
- Homepage: http://204.236.241.194/
- Size: 3.66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

### Task Mananger
# Video 1
```
https://drive.google.com/file/d/1fcHBPeF7KtKXMEBanR7tKIjurjlQzvIW/view?usp=drive_link
```
# Video 2
```
https://drive.google.com/file/d/1us9USGlv65G38JJ0DDlnZ3mbXFrbo7bz/view?usp=drive_link
```
# Requeriment
```
PHP 8.3
mysql 5.x or superior
node 18.x or superior
composer
```
# Configuration Linux & Macos
## First we need to have the project
```
Clone repository https
git clone https://github.com/InteliClic/ChoresAppGE.git
Clone repository ssh
git clone git@github.com:InteliClic/ChoresAppGE.git
```
## We install all the dependencies that the project needs
```
composer install
```
## We installed Node in the project
```
npm install
```
## We add the alias on the host
```
sudo nano /etc/hosts
127.0.0.1 choresappge.com
```
## We add the name of the database
```
Name DB
ChoresAppGE
```
## Let's migrate the tables to the database
```
php artisan migrate
```
## Now we need to add test data to the database
```
php artisan db:seed
```
## We carried out the project under the name of alias
```
php artisan serve --host=choresappge.com --port=8000
```
## We run the node to compile the files
```
npm run dev
```
## We run the cronjob to increase the time to tasks
```
php artisan schedule:work
```
## Open the browser and type this URL
```
http://choresappge.com:8000
```