An Israeli Pirate Party project, dedicated to mapping open WiFi networks.
Development of OpenWifi follows the standard Python dev environment setup, and assumes knowledge of such tools:
git clone git://github.com/israelipirates/openwifi.git
cd openwifi
mkvirtualenv openwifi
pip install -r requirements.txt
python app.py
OpenWifi is built to be deployed on the Heroku platform. Follow the usual steps for Heroku deployment:
heroku create
heroku addons:add heroku-postgresql:dev
heroku pg:promote HEROKU_POSTGRESQL_<COLOR>
git push heroku master
In either case database tables should be created via a Python interactive console (python
locally or heroku run python
on Heroku):
from app import app
from models import db
with app.test_request_context():
db.create_all()
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.