Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eldar34/todolist


https://github.com/eldar34/todolist

Last synced: 22 days ago
JSON representation

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