Dailigram is an online diary which provides users free space to instantly preserve their moments and memories, including pictures. Plus, it's accessible anywhere and anytime through the internet, which is surely more convenient than carrying a diary book. Our target group is a typical internet users who prefer writing journal online.
GitHub | Name | Roles |
---|---|---|
bankeez | Piyawat Setthitikun | Scrum Master, Developer |
kimvcp | Vichaphol Thamsuthikul | Developer |
Kittinske15 | Kittin Vatabutr | Developer |
- Iteration Plan - Google Docs
- Task Board - Trello
- Issue Tracker - Github issues
You must download the following to be able to run.
Python (ver.3.5 or newer)
download siteHeroku CLI
download siteNode.js
download sitelocal environment variable
Please ask project owner privately for the environment variables.
Open the Terminal and type the following command:
git clone https://github.com/bankkeez/dailigram.git
cd dailigram/
Using virtualenv allows you to avoid installing Python packages globally which could break system tools or other projects.
virtualenv venv
Activate it before you start installing packages.
On MacOS and Linux:
source venv/bin/activate
On Windows:
venv\Scripts\activate
Be sure that everything is installed and run in the virtualenv.
(venv) pip install -r requirements.txt
When done, you have to exit your virtualenv, simply type:
(venv) deactivate
Activate the virtualenv before running.
On MacOS and Linux:
(venv) heroku local web
On Windows:
You have to create file name Procfile.windows
in your root directory and write this
web: python manage.py runserver localhost:5000
then you are ready to run.
(venv) heroku local web -f Procfile.windows