Skip to content

mishmosh/rva-screening

 
 

Repository files navigation

rva-screening

What

A prototype of an application that will allow safety net health services in Richmond, VA to share patients' financial screening information more easily. For more information, check out our blog.

Status

This project is in early development. We also discuss potential features and design decisions in the rva-screening-ui-prototypes repo.

Who

The 2015 Code for America Fellows in Richmond, VA:

Ben Golder (bengolder)
Emma Smithayer (esmithayer)
Sam Matthews (svamatthews)

How (Installation)

The application is built with Python and Flask.

Environment variables

  • DATABASE_URL=[db connection string] — For example, postgresql://localhost/screener

Install

  • Install a PostgreSQL database (how to)
  • A virtual environment will make it easier to manage dependencies.
  • Clone the repo: git clone https://github.com/codeforamerica/rva-screening
  • Change into the project directory: cd rva-screening
  • Install Python requirements: pip install -r requirements.txt
  • Install front end requirements: npm install
  • Create a database:
psql
create database rva-screening;
  • Set up the database: make new_db
  • Create mock data, including user accounts: make data
  • Start server: make run

After pulling down new code:

pip install -r requirements.txt
make db_update

Testing

To run the tests, you'll need a new database. By default, the code looks for a database called 'screener_test'. Set the TEST_DATABASE_URL environment variable if you choose a different name.

psql
create database screener_test

Run make test to run all the tests.

Contribute

At this early stage, you should email us (the Richmond CfA Fellowship Team) if you're interested in helping with the project: richmond@codeforamerica.org.

About

Health service prescreener for sharing patient eligibility data.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 38.7%
  • HTML 25.3%
  • JavaScript 20.6%
  • CSS 13.9%
  • PLpgSQL 1.1%
  • Makefile 0.3%
  • Mako 0.1%