Skip to content

YarikHrabovets/coding-challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coding Challenge

This website has React frontend that communicates with a NodeJS backend running Express.

To run locally:

  • Install all necessary libraries. Open two tabs for best experience.

    • If you didn't open project in code editor (e.g VsCode)

      • Open terminal and go to the directory where you saved project.

      • First tab(Frontend tab):

            $ cd coding-challenge/frontend
            $ npm install
      • Second tab(Backend tab):

            $ cd coding-challenge
            $ npm install
    • In other cases

      • First tab(Frontend tab):

            $ cd frontend
            $ npm install
      • Second tab(Backend tab):

            $ npm install
  • After successful installation:

    • First tab(Frontend tab):

          $ npm start
    • Second tab(Backend tab):

          $ cd backend
          $ npm start

Hope this short guide is helpful!