Skip to content

kmehant/Design-Initiative-Dashboard-frontend

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Design-Initiative-Dashboard

Folder structure

  
  1. client folder contains all the front-end related stuff.

  2. server folder contains all the backend related stuff.

Server-side

  1. cd config - (contains all the configuration files)
  2. cd controllers - (contains all the logic for APIs)
  3. cd models - (contains all the database schemas)
  4. cd routes - (Defined all the routes for APIs)
  5. cd tets - (contains files for unit-testing APIs)

Set-up locally and run

  1. Add .env file in the root directory of server
  MONGO_URI = '<YOUR_MONGODB_URL>'
  PORT = 5000
  NODE_ENV = 'development'
  1. Install dependencies on server-side
  > cd server
   npm install
  1. To run backend (development mode)
   > cd server
   npm run dev
  1. Install dependencies on client-side
   > cd client
   npm install
  1. To run frontend
   > cd client
   npm run start
  1. Ports:
    1. Backend running on: 5000
    2. Frontend running on: 3000

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.5%
  • HTML 6.5%