You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
Ben Golder edited this page Nov 1, 2017
·
3 revisions
Quickstart
An overview of the command line steps to get started
git clone https://github.com/codeforamerica/intake.git
cd intake
createdb intake
cp ./local_settings.py.example ./local_settings.py
# add database connection info to local_settings.py
python3 -m venv .venv # make a virtual envsource .venv/bin/activate # activate it
make install
make db.setup # migrate the database and add seed data
make serve # run the server