Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 832 Bytes

README.md

File metadata and controls

43 lines (28 loc) · 832 Bytes

Zournal-Client

Zournal Client is a TypeScript React application that is frontend of Zournal application.

Installation

Run this project using node, follow these guidelines:

  git clone https://github.com/abhishek-geek/zournal.git
  cd zournal
  cd client
  npm install

Environment Variables

To run this project, you will need to add the following environment variables to your .env file

REACT_APP_DEV_API_URL - Server URL for development environment

REACT_APP_PROD_API_URL - Server URL for production environment

Example:

REACT_APP_DEV_API_URL=http://localhost:5000
REACT_APP_PROD_API_URL=https://zournal-server.herokuapp.com

To run Development server

  npm start

To build production version

  npm run build