├── .travis.yml ├── Procfile ├── README.md ├── preview.png ├── projects.json ├── projmon ├── VERSION ├── __init__.py ├── static │ ├── entypo.eot │ ├── entypo.svg │ ├── entypo.ttf │ ├── entypo.woff │ ├── login-bg.gif │ ├── scripts.js │ └── styles.css ├── templates │ └── index.html └── test.py ├── requirements.txt ├── runserver.py ├── setup.py └── statuses.pgsql /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/.travis.yml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn -w 8 projmon:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/README.md -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/preview.png -------------------------------------------------------------------------------- /projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projects.json -------------------------------------------------------------------------------- /projmon/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.0 2 | -------------------------------------------------------------------------------- /projmon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projmon/__init__.py -------------------------------------------------------------------------------- /projmon/static/entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projmon/static/entypo.eot -------------------------------------------------------------------------------- /projmon/static/entypo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projmon/static/entypo.svg -------------------------------------------------------------------------------- /projmon/static/entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projmon/static/entypo.ttf -------------------------------------------------------------------------------- /projmon/static/entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projmon/static/entypo.woff -------------------------------------------------------------------------------- /projmon/static/login-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projmon/static/login-bg.gif -------------------------------------------------------------------------------- /projmon/static/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projmon/static/scripts.js -------------------------------------------------------------------------------- /projmon/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projmon/static/styles.css -------------------------------------------------------------------------------- /projmon/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projmon/templates/index.html -------------------------------------------------------------------------------- /projmon/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/projmon/test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/requirements.txt -------------------------------------------------------------------------------- /runserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/runserver.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/setup.py -------------------------------------------------------------------------------- /statuses.pgsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/projectmonitor/HEAD/statuses.pgsql --------------------------------------------------------------------------------