Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Quickstart

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 env
source .venv/bin/activate  # activate it
make install
make db.setup  # migrate the database and add seed data
make serve   # run the server