Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 1.14 KB

README_WORKING_WITH_WEB_APP.md

File metadata and controls

40 lines (22 loc) · 1.14 KB

Contents

Working with WebApp Day-to-Day

If you are returning to work on WebApp and other developers have made changes, follow these steps.

Update WeVoteServer first (the code that powers the Django/Python API Endpoints). See instructions here

Grab the latest code from https://github.com/wevote/WebApp

Activate the virtual environment:

$ cd /Users/<YOUR NAME HERE>/NodeEnvironments/WebAppEnv/
$ . bin/activate

Install changes and start web application

(WebAppEnv) $ cd /Users/<YOUR NAME HERE>/MyProjects/WebApp
(WebAppEnv) $ npm install
(WebAppEnv) $ npm start

You should be able to visit WebApp here:

http://localhost:3000

Next: Debugging Tools and Tips

Go back to Readme Home