This application serves as an example for the proposed new Reference Architecture that will be used going forward for NYC Dept of Homeless Services. It is based on Shelter Capacity Dashboard (CapDash). CapDash was selected an an example for the since it is a relatively straightforward application.
The number of New York City homeless and those seeking temporary shelter has grown substantially over the past few years, creating significant challenges with respect to the task of ensuring that every person in need is assigned to an appropriate shelter on a nightly basis. DHS constantly experiences extremely tight shelter capacity, and often requires emergency expansions of capacity. The capacity constraints, the fact that actual demand is often not clear until midnight, along with the need to match clients to shelters that can address any special needs or reasonable accommodation requests, makes it extremely important that DHS has an accurate and up to date understanding of shelter capacity and that DHS optimizes the availability and use of existing units/beds.
Shelter Capacity Dashboard v2 (CapDash2) is a new software application that will give DHS the tools needed to create and manage plans that optimize shelter utilization and minimize costs while fulfilling the DHS mission of providing appropriate shelter to every person in need. CapDash2 will leverage key statistical information such as known seasonal periods of high or low demand to improve the quality of forecasting. By incorporating regularly-updated data feeds from CARES and other key data sources both within and outside DHS, CapDash2 will also enable DHS to modify both future forecasts and current plans as they work with shelters throughout each evening. CapDash2 will enable DHS to test out alternative future scenarios and compare the costs of future plans given differing sets of assumptions, which may be used to help forecast DHS budgetary needs. Since offline units reduce capacity and impact both short-term and long-term capacity planning, CapDash2 will track offline units and the plans and timelines for bringing them back online. Lastly, CapDash2 will track commercial hotel reservations made by DHS Procurement Card (P-Card) holders and match them against their actual usage over time, while facilitating reconciliation with applicable P-Card charges. The ability to accurately capture commercial hotel reservations and usage (many of which are made at the last minute) improves CPD’s ability to report, manage, and budget for this activity. P-Card reconciliation capabilities reduce DHS’s risks associated with reporting errors, mistaken/unused purchases, or malfeasance.
Phase one of CapDash2 will have both a business and a technical goal: it will significantly improve our ability to forecast capacity and demand by leveraging statistics from prior years and applying seasonal patterns of high and low shelter utilization. It will also serve as a reference implementation of the DHS Enterprise Architecture, meeting security, scalability and maintainability requirements, and serve as an example for subsequent applications. Phase two of CapDash2 will incorporate additional CapDash1 features including P-Card transaction tracking, offline unit tracking, and commercial hotels reservation information, while adding a service that both reads data from and makes updates to CARES, the system of record for much (though not all) of the information. Phase two will consolidate current systems such as CapDash1 and the Commercial Hotels Tracker spreadsheet, while providing a single system that both Intake and Vacancy Control (IVC, adults), and Homeless Emergency Referral Operation (HERO, families with children) can use to manage information not contained within CARES. Easy modification, undo, auditing, and reconciliation of up-to-the-minute information will also improve our ability to predict intra-day capacity changes, and improve accuracy of forecasts.
Please see the Vision for more details, as well as a domain glossary.
The new architecture consists of the following main pieces:
- PostgreSQL Database PostgreSQL database.
- Ruby on Rails 5 Backend running in API Mode
- AngularJS 4 Frontend AngularJS 4
- Twitter Bootstrap CSS styling framework
Additional technologies will be listed here or in the respective BE/FE readme files as they are incorporated into the application (e.g. Redis, Redux, etc.)
Please see the Enterprise Architecture Stack for more details regarding the proposed future-state architecture.
NOTE: the client and server applications are now git submodules.
This allows front-end and back-end developers to focus on their piece in isolation.
However, it means that if we want to fetch the entire tree and work with it as a single unit, we will have to perform some extra configuration steps.
See this blog to learn more about git submodules.
- Clone the repo
git clone --recursive [email protected]:arielpartners/capdash2.git
- Initialize, configure, and fetch the submodules
chmod a+x ./utils/git-init-submodules; ./utils/git-init-submodules
Please see the front-end README and back-end README respectively.
Assuming all the pre-requisites are fulfilled, you may start the application as follows:
docker start postgres
cd capdash2-server; rails s
cd capdash2-client; npm start
- Use the following URL and login:
Environment | URL | test login | test password |
---|---|---|---|
Localhost | http://localhost:4200 | [email protected] | password |
Integration | http://tbd | ? | ? |
UAT | http://tbd | ? | ? |
Prod | http://tbd | ? | ? |
- Count lines of code
chmod a+x utils/count-sloc;utils/count-sloc
- capdash2-client version number
- See version in
capdash2-client/package.json
- Back-end version number
- See version in
cdserver/config/initializers/application.rb
The following set of tools and configurations are required in order to build and run the application as a developer.
The following tools apply both to back-end and front-end development. Follow the instructions based on your operating system. If following tools are already installed on your machine. You may skip the installation part, and start from cloning the repo.
Installation for Windows
- Install CMDer
- CMDer is a Powershell replacement, download the full version with Git included
- Download CMDer
- Install Chocolatey
- Chocolatey is a Homebrew-style package manager for windows
- From Powershell or CMDer, run
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
- If that does not work, download the Chocolatey installation package manually, unzip it, and install it using the NuGet Package Manager (pre-installed on any newer versions of Visual Studio) using the instructions at https://chocolatey.org/install#install-downloaded-nuget-package-from-powershell. Navigate to "More Install Options", click on "More Otions", then on "Install downloaded NuGet package from PowerShell".
Installation for Mac or Linux
- Install Xcode
- Open App Store.
- Search for Xcode.
- Double-click to install.
- Install XCode Command Line Tools
- Open Terminal window.
- Type
xcode-select --install
- Follow the prompts to install the command line developer tools
- It may be necessary to perform the following, depending on the order of installation:
sudo xcode-select -switch /Library/Developer/CommandLineTools
- See Stack Overflow for more details
- Install Homebrew
- Install homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Ensure Homebrew is installed and working properly
brew doctor
- Install git
brew update
brew install git
- Follow these instructions to add an ssh key to your github account.
Clone the repo
git clone --recursive [email protected]:arielpartners/capdash2.git
chmod a+x ./utils/git-init-submodules; ./utils/git-init-submodules
Nvm allows you to install multiple versions of Node.JS and switch between them easily. This is very important if you are maintaining multiple applications or multiple versions of the same application.
Installation for Windows
- Nvm allows you to install multiple versions of Node.JS and switch between them easily. This is very important if you are maintaining multiple applications or multiple versions of the same application.
- Using Chocolatey:
choco install nvm
(also available here)
Installation for Mac / Linux
- See installation instructions on the GitHub nvm page
- Execute install script
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
- Verify that nvm is installed correctly
nvm ls
- You should not see any errors
- Check the version
nvm --version
it should be 0.33.0
- See latest version here
- Install version 7.10.0
nvm install 7.10.0
- Set 7.10.0 to be the default version
nvm alias default 7.10.0
- Make sure everything is set correctly:
nvm ls
npm-check-updates provides a utility program "ncu" that automatically detects whether all packages in packages.json
are up to date, and if not, what are the latest versions.
You can optionally tell ncu
to update the settings in package.json
to update everything to the latest versions in one go. npm install
is still needed to actually install the new packages. Before the first production release, we try to keep all packages up-to-date.
After releasing to production, updates must be carefully planned to avoid application instability.
npm install -g npm-check-updates
- Download Webstorm
- You should have the latest version (
2017.1.2
as of 5/20/2017) - Go to Preferences/Version Control/GitHub and generate token, then test it
- This will make sure that WebStorm still works if you move to 2FA
- In Webstorm load (change directory to) capdash2-client
npm install
npm start
- Above requires setting up database and starting Rails server from capdash2-server. Alternatively, for dev, you can
npm run json-server
along withnpm start
in two terminal tabs.
-
Installation for Windows
- Confirm that the PC has virtualization enabled: Launch the Task Manager, select the Performance tab, and confirm that "Virtualization : Enabled". If not, enable virtualization in the BIOS: On an HP EliteDesk 800 G1, for instance, hold down F10 during the boot process, and the PC will enter the HP Setup Utility. Pick Security -> System Securty. Then enable Virtualization Technology (VTx) and Virtualization Technology Directed I/O (VTd). Accept/Save changes by pressing F10. The computer will reboot. Then confirm that virtualization is enabled via the Task Manager.
- Install Docker for Windows
-
Installation for Mac / Linux
- Install Docker Toolbox
- Execute
docker pull postgres
- The alternative below could be made to work via some tweaking:
- Run Kitematic and click on
+NEW
next to Containers in the top left. - Type
Postgres
in the Search box where it says "Search for Docker images from Docker Hub" - The top hit will be the "official" Postgres image. Click
Create
-
The first time, do the below. This only needs to be done the first time: Execute docker
- Mac / Linux
sudo docker run --name postgres -e POSTGRES_PASSWORD=password -d postgres
- Windows
docker run --name postgres -e POSTGRES_PASSWORD=password -d postgres
Then start the container:
docker start postgres
- Mac / Linux
- Execute
docker run -it --rm --link postgres:postgres postgres psql -h postgres -U postgres
- At the prompt type
SELECT 1;
- You should see 1 returned
- Ctrl-D to exit
createuser --createdb --login -P capdash
- Since this is local, you can use an insecure password:
capdash
- If the
createuser
executable does not exist, create the user in PSQL (use the docker command from #4) - Create the user:
CREATE USER capdash CREATEDB PASSWORD 'capdash';
- Run Kitematic
- click the sprocket next to the postgres container
- You should see 5432 for the Docker port and localhost:5432 for the host port.
- If you don't, then add the host port and press save.
- You may skip to installing Ruby, if you are using Windows.
- Execute
\curl https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer | bash -s stable
- Check out your .bash_profile file. It should have rvm in it. You should create a new shell to pick up the new settings.
- Test
which rvm
- You should see something like this:
/Users/ckstrong/.rvm/bin/rvm
-
Installation for Windows
- Install with chocolatey:
choco install ruby
andchoco install ruby2.devkit
- Also available through RubyInstaller. Make sure you install both Ruby and the devkit.
- Ruby 2.3 appears to be the most recent available on Windows
- Install with chocolatey:
-
Installation for Mac / Linux
- See latest version here
- Install version 2.4.0
rvm install 2.4.0
- Generate docs
rvm docs generate-ri
- Set 2.4.0 to be the default version
rvm use 2.4.0
- Make sure everything is set correctly:
rvm ls
- Check which Ruby you are using
ruby -v
You should see 2.4.0
- Install version 5.0.2
gem install rails --version=5.0.2 --no-ri --no-rdoc
- Validate the install
gem list --local rails
- Download RubyMine
- You should have the latest version (
2017.1.3
as of 5/20/2017) - Go to Preferences/Version Control/GitHub and generate token, then test it
- This will make sure that RubyMine still works if you move to 2FA
-
Installation for Windows
- Not sure if necessary, but you can install Postgres:
- Through Chocolatey:
choco install postgresql
andchoco admin pgadmin3
- From the site
-
Installation for Mac / Linux
- So far, the only way I have gotten this to work is to install Postgres locally
- We won't actually use this instance, since we are using the Postgres Docker image, but we need the header files in order to compile the pg gem
- This part of the configuration could be improved
- We will use these instructions
brew update
brew doctor
brew install postgresql
gem install pg
- NOTE: On Mac you may need to type
sudo gem install pg
- There has got to be a better way:
brew uninstall postgresql
- We just installed postgres to get pg and then uninstalled it immediately
- In RubyMine load capdash2-server project
- We are using these instructions
bundle install
rails db:setup
rails db:migrate
rails server