All Projects → danieldiekmeier → roommates

danieldiekmeier / roommates

Licence: MIT license
Organize your shared living arrangement

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
CSS
56736 projects
ruby
36898 projects - #4 most used programming language

Roommates

screenshot

Organize your shared living arrangement.

Installation

It's simple, really. If you want to check it out locally, try this:

git clone https://github.com/danieldiekmeier/roommates
cd roommates
pipenv install
pipenv run python runserver.py

Then go to http://127.0.0.1:1337. Roommates comes with a simple setup where you can enter everything Roommates needs to know and the database will automatically be created.

If you want to install it on your server, the excact installation may differ, but the Flask documentation for deploying is quite good: http://flask.pocoo.org/docs/deploying/

config.py

If you have trouble with creating a config.py with the setup, here is what it should consist of:

TITLE = 'Roommates'
DATABASE = 'roommates.db'
CURRENCY = '€'
UPLOAD_FOLDER = '/Users/<You>/dev/python/roommates/roommates/uploads'
SECRET_KEY = 'this has to be extremely seecret'

Database

The roommates Subfolder contains a schema.sql that can help you setting up the SQLite-Database if the setup doesn't work.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].