Rentee is a open source rent mate recommendation website. You can fork the repo to build your own website.
This Website is still on developing.
The google map tokens are removed pls add with yours.
This web frame is developed with Flask, you should install the flask package first. Use the command line below to install all the package this project need.
pip install -r requirements.txt
Be careful that you should cd
to the Site
folder before you use this command.
After the packages are installed, you should firstly init the database. I use the sqlite to build the database, you can switch to what you like.
Use the commands below to build the database.
$ python manage.py db init
$ python manage.py db migrate
$ python manage.py db upgrade
Inorder to use the google map api, you should fill the key
in detail.html
and explore.html
with your own google api token.
Now you can run the website on your computer
$ python manage.py runserver
Click the http://127.0.0.1:5000 and you can see it on you computer.