Skip to content

Latest commit

 

History

History
71 lines (50 loc) · 2.31 KB

DEVELOPERS.md

File metadata and controls

71 lines (50 loc) · 2.31 KB

Setting up and running the app on your machine

This document describes how to set up your development environment to run and test Connectify. It also explains the basic mechanics of using git, node.

Prerequisite Software

Before you can run and test Connectify, you must install and configure the following products on your development machine:

Getting the Sources

Fork and clone the repository:

  1. Login to your GitHub account or create one by following the instructions given here.
  2. Fork the main repository.
  3. Clone your fork of the repository and define an upstream remote pointing back to the Connectify repository that you forked in the first place.
# Clone your GitHub repository:
git clone [email protected]:<github username>/Connectify.git

# Go to the Connectify directory:
cd Connectify

# Add the main repository as an upstream remote to your repository:
git remote add upstream https://github.com/vrushti-mody/Connectify.git

Installing NPM Modules

Next, install the JavaScript modules needed to build and test Connectify:

# Install project dependencies (package.json)
npm ci

Spinnng up the Database

Mail to us for access to the firebase console

Setting up environment variables

You need to set up the Firebase Credentials here

cp .env.template .env

Starting the server

npm start