Skip to content

QuestAI/auth-app-express

Repository files navigation

Auth App Express

Basic React + Node App

How to run it locally

Without Docker

Server

cd server && npm install && npm run start:dev

Client

cd client && npm install && npm start

With Docker

Build

docker build -t auth-app-express .

Run

docker run -p 4000:4000 auth-app-express