Skip to content

tannguyenit/PHP-MVC-Todo

Repository files navigation

PHP - Todo - MVC

Prerequisites

  • Docker and docker-compos

Run docker

docker run --rm -v $(pwd):/app composer install --ignore-platform-reqs

Create database

You need to exec to mysql container and run below command for create table

// harorax476@yutongdt.com
create table tasks
(
	id int auto_increment primary key,
	name varchar(255) null,
	start_date date null,
	end_date date null,
	status enum('PLANNING', 'DOING', 'COMPLETE') default 'PLANNING' null,
	created_at timestamp default now() null,
	updated_at timestamp default now() null
);

Run app

docker-compose up -d

Demo

https://todo-php-mvc.herokuapp.com

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published