Skip to content

donaldma/translink

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TransLink React App

This project was bootstrapped with Create React App

Web App built with react/redux front end and node, express back end.

Deployed Version

Development

Want to contribute? Great!

Getting started

git clone [email protected]:donaldma/translink.git
git checkout -b [your feature branch name]

To start the express server:

cp .env.example .env
npm install
npm run dev

To start the client server:

cd client
npm install
npm start

npm run build - creates production ready build

You are all set, open the web app on your browser: http://localhost:3000

Pushing code

Make sure your branch is up to date with master branch and has no conflicts, if there are conflicts please resolve your conflicts locally before pushing

git checkout master
git pull origin master
git checkout [your feature branch name]
git merge master
git push origin [your feature branch name]

Go on the Github Repository
Create a new pull request
base: master
compare: [your feature branch]

Have at least one approved review, then merge into master.