Visit the latest development build: https://streetwise-dev1.herokuapp.com/
Architectural Haiku:
Know when, who to call
Give #s and times for homes
Build a contact sheet
Stakeholders:
- Product Owner: we hope to partner with a Durham city department.
- Users: residents and business owners in Durham.
Guideposts:
- resource constraints:
- developed by volunteers, in their free time!
- there is no budget -- free/cheap resources are best!
Vocabulary:
- "Service" is a geographically located offering such as a city provided service (ie, trash pick up), or utility, or park.
This is a Django project "Code for Durham" is working on that will be similar to the LA Neighborhood Info site: http://neighborhoodinfo.lacity.org/
This project is composed of a Django/python backend, and a React frontend.
In local development two servers are needed to develop for the full app:
- The backend django server, that serves to the API.
- React server, that automatically assembles any changes to the javascript frontend. The React Scripts project is used.
Because we have a number of Windows users, we recommend installing Anaconda Python, and using the conda
:
conda install --yes --file requirements.txt
# Set up the initial developer settings if you haven't already done so:
cp streetwise/devsettings.template.py streetwise/devsettings.py
# Run the Django backend server on http://localhost:8000
export DJANGO_SETTINGS_MODULE=streetwise.devsettings
python manage.py runserver
Visit http://localhost:8000/qpa/ to work directly against a server side path -
http://localhost:8000 serves the react interface (whatever was most recently
built with python manage.py collectstatic
), and should generally be avoided
for local development.
In another console, run the react scripts for local development. Optionally use nvm or nvm-windows to manage your node installations:
# Optionally use NVM to use the version of node used by this project:
nvm use
npm install -g yarn
# Run the frontend React server on http://localhost:3000
yarn install
yarn run start
Visit http://localhost:3000 to work directly with the React interface.
To run the servers locally with docker:
# Set up the initial developer settings if you haven't already done so:
cp streetwise/devsettings.template.py streetwise/devsettings.py
docker-compose up
Visit the django app: http://localhost:8000 Visit react dev: http://localhost:3000