Final project for "The Complete Web Developer: Zero to Mastery" course by ZTM academy
The backend code available at smartbrain-be repo.
Web App that allows users to detect faces in pictures using Clarifai's AI API.
Utilized: ES6, React, Node.js, Express, PostgreSQL, Redis, Docker, knex, bcrypt, JWT, Prettier.
-
Clone this repo and
cd
to the project dirgit clone git@github.com:tmssd/smartbrain-fe.git && cd smartbrain-fe
or
git clone https://github.com/tmssd/smartbrain-fe.git && cd smartbrain-fe
-
Launch the app
Conventional way:
npm install && npm start
OR
Dockerized version:
-
for development version
for the first setup phase run:
docker-compose -f docker-compose.dev.yml up --build
otherwise run:
docker-compose -f docker-compose.dev.yml up
-
for production version
for the first setup phase run:
docker-compose -f docker-compose.prod.yml up --build
otherwise run:
docker-compose -f docker-compose.prod.yml up
The app now availbale at
localhost:3001
-