Skip to content

Latest commit

 

History

History

local-development-setup

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

⚙ Local Development Setup

In this page, there will be instructions on how to locally setup your development environment

Prerequisites

You will need the following installed on your system:

  • Node/NPM
  • Git
  • Code editor of your choice

Setting up a development environment

  1. Clone the Digitomize repository
git clone https://github.com/digitomize/digitomize.git
  1. Install all the dependencies in the root directory
npm install
  1. Configure the environment variables for the client directory and the backend directory.

Use the following guides to help you setup and configure all the requirements.

Frontend Setupfrontend-setup.md
Backend Setupbackend-setup.md

Running the Application

Once all the environment variables are setup, you can start the development server.

npm run dev

This command will start both the frontend and backend servers.

Congratulations. That's it!🎉

You're all setup and ready to interact with the project.