Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eldar34/todolist
https://github.com/eldar34/todolist
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/eldar34/todolist
- Owner: eldar34
- Created: 2020-05-05T04:15:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-30T20:19:41.000Z (over 2 years ago)
- Last Synced: 2024-11-05T15:34:55.953Z (2 months ago)
- Language: PHP
- Homepage: https://list2do.herokuapp.com
- Size: 3.86 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# INSTALLATION WITH DOCKER
Run docker-compose command
docker-compose up --build
Open web aplication at http://your_host:8080
Open adminer for db at http://your_host:6080# INSTALLATION
Run composer command
composer install# DB Settings
Set connection with database in file .env
DB_HOST="" //localhost
DB_NAME="" //database name
DB_USER_NAME="eldar" //user name
DB_PASSWORD="" //password# DB Migrations
This command create tables in your database
vendor/bin/phinx migrate -e production# DB Seeds
This command populate your database with dummy data
vendor/bin/phinx seed:run -e production