Login App

Deploy api

Api requires [php >=7.4] & [composer latest]

Install the dependencies and devDependencies and start the server.

First step:

cd api

Second step:

composer install

Third step:

cp config.axample.php config.php (set your db environtments)

Fourth step:

composer db_migrate

Fives step:

composer db_seed

Sixes step:

composer serve

Api will run in localhost:3001

Deploy fronted

App requires [nodejs >=16.1] & [npm latest]

Install the dependencies and devDependencies and start the server.

First step:

cd front

Second step:

yarn install (or npm i)

Third step:

yarn start (or npm run start)

Front will run in localhost:3000