Skip to content

ramonlimaramos/developer-radar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DevRadar

Developers radar a fullstack POC Javascript.

web mobile

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

  • nodejs
  • yarn
git clone https://github.com/ramonlimaramos/developer-radar.git

Installing locally

Following the steps to get up and running the project locally. We will need to install the required libraries of each project such as web, mobile and API, from the terminal:

cd developer-radar/backend

Executes yarn for installing the libraries

$developer-radar/backend >> yarn

do the same for folders web and mobile

$developer-radar/web >> yarn
$developer-radar/mobile >> yarn

Creating the your locally .env file

In order to run the application locally you need to provide a .env file providing the following attributes:

backend

$developer-radar/backend >> vim .env
MONGODB_ATLAS_SVR_URL=[your mongo db connection url it can be whatever dabase you name you want]
PORT=3333

mobile

$developer-radar/mobile >> vim env.js
export const baseURL = "http://yourLocalIp:portDefinedBackendEnv"

web

$developer-radar/web/src >> vim env.js
export const baseURL = "http://yourLocalIp:portDefinedBackendEnv"

Running

Well after all the env files configured let's run the three projects:

backend

$developer-radar/backend >> yarn dev

web

$developer-radar/web >> yarn start

mobile

$developer-radar/mobile >> yarn start

Built With

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details