Barangay KodeGo
Barangay KodeGo is an interactive barangay content management system submitted as a Capstone Project for Batch 18 of KodeGo’s full stack web development course (WD-18).
It is written in vanilla NodeJS without any frameworks on a MySQL database.

Setup instructions:
✓ To set up brgykodego
as a local server application:
- Download and extract the source.
- Make sure the commands
npm
and mysql
are in your path.
- On the terminal, go to the project folder and do
npm run setup
.
- Once setup completes, start it anytime by running
npm start
.
- Note: On your
/etc/hosts
file, you may have to set the following lines
localhost 127.0.0.1
*.localhost 127.0.0.1
✓ To set up a custom brgykodego
as a remote server application:
- Clone this project on GitHub and fork it to your own GitHub repository.
- Create a remote project on a host that allows running web applications, e.g., Heroku.
- Associate your remote project to your GitHub repository and set up automatic sync.
- Use a remote MySQL server such as ClearDB instead of your localhost’s SQL server.
- If on Heroku, you can optionally install the
heroku
command line for remote debugging.
- Restart the remote server. The application should show up online now.