Main URL: http://family-promise-dev.us-east-1.elasticbeanstalk.com
Perform SQL query of database according to filters implemented by user. Only pick out the following columns, and include those in a single JSON object that will be sent to DS API:
service_type_name
fromservice_types
table.
Plus:
- address
- address_line2
- city
- state
- zip
- country
from locations
table.
*zip codes are pulled from github repo link and added to a dataframe based on pulled zip
A JSON object containing:
- recipient_id
- recipient_veteran_status
from recipients
table.
A JSON object containing:
- recipient_id
- recipient_date_of_birth
from recipients
table.
Accepts a string containing a household_id from the households table.
Returns a JSON object containing:
- resident_assistance_eligibility: bool
- reduced_bus_fare_eligiblity: bool
Returns an integer representing the total number of recipients recorded in the database.
Returns an integer representing the total number of families recorded in the database.
Returns an integer representing the total number of children recorded in the database.
- Create the .env file in the folder.
- Add
DATABASE_URL = postgresql://docker:****@localhost:5400/api-dev
to the .env file.- That is only for spinning up the local instance for the DS API
- Make sure the .env file matches the .env file that is in the non public documentation.
- Add
- run:
pipenv install --dev
to download all the dependencies. - run:
pipenv shell
to start the pipenv environment. - run:
uvicorn app.main:app --reload
to start running the fast api.
- Do a normal push to GitHub repo and wait for the changes to be approved and pushed to the main branch.
- run:
git pull
to make sure code is perfect to deploy to Elastic Beanstalk. - run:
git add --all
to get all the changes to the api that has been made. - Change the version number in the
main.py
file. Example:0.37.01
- run:
git commit -m 'Depoying version 0.XX.XX to AWS'
to get all the changes add. - When you start to deploy the new changes to Elastic Beanstalk it will take latest commit you made.
- run:
eb init --region us-east-1 family-promise
to create the Elastic Beanstalk files in the application.- This step will only be required if you have not deployed to the Elastic Beanstalk environment.
- run:
eb deploy --region us-east-1 family-promise-dev
.
- Follow instruction that will given to you.
- You may have to grab your security credentials from AWS.
- Do a final push to add the final version number to the GitHub repo.