-
Notifications
You must be signed in to change notification settings - Fork 4
Home
Welcome to the Swe573HW2016F wiki!
This is the main wiki page of this projectm a copy of README.md file. (https://github.com/muatik/Swe573HW2016F/blob/master/README.md)
Healthier is a health tracker application which is planned, designed and implemented for Software Development Practice (SWE 573) 2016 Fall project. In this application, users can track their food consumptions, physical activities, and body mass indexes. They also define and try to achieve customized goals such as losing weight or getting enough nutrients. By showing eating and consumption reports, the application helps users to control and/or plan their eating and physical activities.
adding food consumption
adding physical activity
For more screenshots, please visit Screens wiki page
Because Github's current markdown implementation does not properly render nested enumerated lists, the require document will be maintained in a google document. This document can be viewed anonymously.
Considering the difficulties of managing an open source material on Google Docs, the document will not be editable. Please report your change requests related to requirements in Github's issue system.
Do not forget to specify its enumerated number when mentioning a requirement in a code comment or in an issue.
To make time management for this project, Toggl (https://toggl.com) and Google Doc Spreadsheet are used.
Time management should be done by following the steps listed below.
- open an issue in Github's issue tracker for the task to be done
- add this issue as a new row in the spreadsheet document.
- estimate how many minutes it is going to take you and enter your estimation.
- when you are starting to work on a task, start toggl's time tracker as well.
- when you are done, stop toggle's time tracker and enter how many minutes it took into the spreadsheet document.
https://www.tomsplanner.com/public/muatikhealthier
@TODO
Python as the primary programming language
Django as MVC web application framework
MySQL as the primary database management system
Ubuntu as an operating system for development environment
Apache HTTP Server as a HTTP server
PyCharm as a Python code IDE
Sublime as HTML, Javascript, and CSS editor
Bootstrap as HTML template with Jquery and other helper plugins
Postman as a RESTful API browser
Docker as the deployment environment
Travis.CI as the continuous integration and unit-test service
AWS EC2 Instance Service as a linux server
You can install this application on an AWS EC2 Instances - Ubuntu Server by following the commands shown below. You can run them at once as a Linux sh file if you prefer.
apt-get update
apt-get python-pip
apt-get git-core
pip install --upgrade pip
git clone https://github.com/muatik/Swe573HW2016F
cd Swe573HW2016F/healthier
# running in a virtual environment
pip install virtualenv
virtualenv --python=python3 venv
source venv/bin/active
pip install -r requirements.txt
python manage.py migrate
sudo venv/bin/python manage.py runserver 0.0.0.0:80
Contributions are welcome!
Review the Contributing Guidelines for details on how to:
- Submit issues
- Add solutions to existing challenges
- Add new challenges
MIT
For more information and documentations, please refer to wiki pages.