As per usual, latest Git and Node!
- Clone this repo.
- Run
npm install
in bothclient
andserver
. - Create an
.env
file in bothclient
andserver
.- Server
.env
should have:DB_URL
: An IP address or domain name of a MySQL server.DB_PORT
: MySQL server port.DB_NAME
: MySQL database name.DB_USER
: MySQL database admin username.DB_PASS
: MySQL database admin password.PORT
: Port on which to run this application. Defaults to 5000.
- Client
.env
should have:REACT_APP_BOARD_NAME
: A name for your Kanban Board. Make it something fun!REACT_APP_API_URL
: A URL leading to your backend, e.g.http://localhost:5000
.
- Server
- Run
npm start
from bothserver
andclient
. - Have a blast.