This library is currently being developed and is not production quality ready!
The web app engine which powers "Income Property Evaluator". http://incomepropertyevaluator.com
- Python 3.6
- Install the library.
git clone https://github.com/MikaSoftware/django-incomepropertyevaluator.git
1b. Installation
pip install -r requirements.txt
pip install "git+https://github.com/MikaSoftware/django-trapdoor"
pip install "git+https://github.com/MikaSoftware/py-mortgagekit"
pip install "git+https://github.com/MikaSoftware/py-incomepropertyevaluatorkit"
- Update.
drop database incomepropertyevaluator_db;
create database incomepropertyevaluator_db;
\c incomepropertyevaluator_db;
CREATE USER django WITH PASSWORD '123password';
GRANT ALL PRIVILEGES ON DATABASE incomepropertyevaluator_db to django;
ALTER USER django CREATEDB;
ALTER ROLE django SUPERUSER;
CREATE EXTENSION postgis;
- Run:
python manage.py makemigrations; \
python manage.py migrate; \
python manage.py populate_public; \
python manage.py setup_fixtures;
- Usage:
sudo python manage.py runserver incomepropertyevaluator.com:80
In your browser enter incomepropertyevaluator.com:80
.
Here is an example of using the using the library in your code.
#TODO: Write example...
This library is licensed under the BSD license. See LICENSE.md for more information.