/todo-app

Simple todo app with laravel, vue.js and tailwindcss.

Primary LanguagePHP

Todo App

Simple todo app with laravel, vue.js and tailwindcss.

Prerequisites

  • PHP >= 7.1.3
  • Composer
  • Node.js

Installing

Clone repository and cd into folder

git clone https://github.com/pikarin/todo-app.git
cd todo-app

install composer dependency

composer install

create .env file from .env.example

cp .env.example .env

generate application key

php artisan tinker key:generate

insert your database credential to .env file

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_db_name
DB_USERNAME=your_db_user
DB_PASSWORD=your_db_password

migrate database

php artisan migrate

install node dependency

npm install

compile js and css

npm run dev

access the app 127.0.0.1:8000

php artisan serve

Running the tests

TODO

And coding style tests

TODO

Built With