├── vendor └── .keep ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ ├── rap_sheet.rake │ └── process.rake ├── public ├── favicon.ico ├── apple-touch-icon.png ├── apple-touch-icon-precomposed.png ├── robots.txt ├── 500.html ├── 422.html └── 404.html ├── .ruby-version ├── app ├── assets │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── channels │ │ │ └── .keep │ │ ├── uploads_new.js │ │ ├── cable.js │ │ └── application.js │ ├── motions │ │ └── prop64.pdf │ ├── config │ │ └── manifest.js │ ├── petitions │ │ └── prop64_misdemeanors.pdf │ └── stylesheets │ │ ├── autoclearance.scss │ │ └── application.scss ├── models │ ├── concerns │ │ └── .keep │ ├── application_record.rb │ ├── eligibility_estimate.rb │ ├── anon_disposition.rb │ ├── anon_cycle.rb │ ├── rap_sheet_properties.rb │ ├── event_properties.rb │ ├── count_properties.rb │ ├── anon_count.rb │ ├── anon_event.rb │ └── anon_rap_sheet.rb ├── controllers │ ├── concerns │ │ └── .keep │ ├── uploads_controller.rb │ ├── application_controller.rb │ └── jobs_controller.rb ├── views │ ├── layouts │ │ ├── mailer.text.erb │ │ ├── mailer.html.erb │ │ └── application.html.erb │ ├── jobs │ │ └── index.html.erb │ └── uploads │ │ └── new.html.erb ├── helpers │ ├── application_helper.rb │ ├── code_sections.rb │ ├── pdf_reader.rb │ ├── counties.rb │ ├── rap_sheet_deidentifier.rb │ └── rap_sheet_processor.rb ├── jobs │ ├── application_job.rb │ └── process_rap_sheets_job.rb ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── mailers │ └── application_mailer.rb ├── domain │ ├── event_with_eligibility.rb │ ├── rap_sheet_with_eligibility.rb │ ├── prop64_classifier.rb │ └── summary_csv.rb ├── classifiers │ └── plea_bargain_classifier.rb └── lib │ ├── fill_prop64_motion.rb │ └── fill_misdemeanor_petitions.rb ├── terraform ├── staging │ ├── backend-config.example │ ├── varfile.example │ ├── variables.tf │ └── staging.tf ├── production │ ├── backend-config.example │ ├── varfile.example │ ├── production.tf │ └── variables.tf ├── main │ └── variables.tf ├── policies │ └── mfa_policy.json └── metabase │ └── metabase.tf ├── scripts ├── bastion_awscli.conf ├── bastion_awslogs.conf ├── setup_eb.sh ├── sync_analysis_db.sh ├── bastion_setup.sh ├── create_postgres_user.sh └── adduser.sh ├── bin ├── rake ├── bundle ├── rails ├── yarn ├── spring ├── update └── setup ├── .ebextensions ├── 03_set_up_users.config ├── 02_security_update.config ├── 05_db_migrations.config ├── 06_pdftk.config ├── 04_ruby.config └── 01_awslogs.config ├── package.json ├── spec ├── fixtures │ ├── chewbacca_rap_sheet.pdf │ ├── skywalker_rap_sheet.pdf │ ├── not_a_valid_rap_sheet.pdf │ ├── summary.csv │ ├── skywalker_rap_sheet.txt │ └── chewbacca_rap_sheet.txt ├── support │ └── pdf_helpers.rb ├── features │ └── upload_rap_sheet_spec.rb ├── models │ ├── eligibility_estimate_spec.rb │ ├── anon_cycle_spec.rb │ ├── event_properties_spec.rb │ ├── anon_disposition_spec.rb │ ├── rap_sheet_properties_spec.rb │ ├── anon_event_spec.rb │ ├── count_properties_spec.rb │ └── anon_count_spec.rb ├── lib │ ├── fill_misdemeanor_petitions_spec.rb │ └── fill_prop64_motion_spec.rb ├── rails_helper.rb ├── helpers │ ├── pdf_reader_spec.rb │ ├── rap_sheet_processor_spec.rb │ └── rap_sheet_deidentifier_spec.rb ├── domain │ ├── summary_csv_spec.rb │ ├── event_with_eligibility_spec.rb │ ├── rap_sheet_with_eligibility_spec.rb │ └── prop64_classifier_spec.rb └── spec_helper.rb ├── config ├── spring.rb ├── environment.rb ├── initializers │ ├── mime_types.rb │ ├── filter_parameter_logging.rb │ ├── application_controller_renderer.rb │ ├── cookies_serializer.rb │ ├── backtrace_silencers.rb │ ├── wrap_parameters.rb │ ├── assets.rb │ ├── inflections.rb │ ├── content_security_policy.rb │ └── new_framework_defaults_5_2.rb ├── boot.rb ├── cable.yml ├── routes.rb ├── database.yml ├── application.rb ├── locales │ └── en.yml ├── storage.yml ├── secrets.yml ├── puma.rb └── environments │ ├── test.rb │ ├── development.rb │ └── production.rb ├── config.ru ├── db ├── migrate │ ├── 20180816211915_add_sex_to_anon_rap_sheet.rb │ ├── 20180816220855_add_race_to_anon_rap_sheet.rb │ ├── 20180821003637_add_text_to_anon_dispositions.rb │ ├── 20180809175425_add_county_to_anon_rap_sheets.rb │ ├── 20180814010846_add_index_to_rap_sheet_checksum.rb │ ├── 20180816203328_add_year_of_birth_to_anon_rap_sheets.rb │ ├── 20180817184950_add_person_unique_id_to_anon_rap_sheets.rb │ ├── 20180808174608_create_anon_rap_sheets.rb │ ├── 20180918213324_create_eligibility_estimates.rb │ ├── 20180814232139_create_anon_dispositions.rb │ ├── 20180809215249_add_anon_events_table.rb │ ├── 20180823225331_move_severity_from_count_to_disposition.rb │ ├── 20180809233633_add_anon_counts_table.rb │ ├── 20180917172255_create_count_properties.rb │ ├── 20180913184908_create_rap_sheet_properties.rb │ ├── 20180815170521_add_count_number_to_anon_counts.rb │ ├── 20180913235743_create_event_properties.rb │ └── 20180814195919_create_anon_cycles.rb ├── seeds.rb └── schema.rb ├── .elasticbeanstalk └── config.yml ├── yarn.lock ├── Brewfile ├── .rubocop.yml ├── Rakefile ├── .pgsync.yml ├── .gitignore ├── .circleci └── config.yml ├── Gemfile ├── README.md └── .rubocop_todo.yml /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.1 2 | -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /terraform/staging/backend-config.example: -------------------------------------------------------------------------------- 1 | access_key = 2 | secret_key = 3 | bucket = 4 | -------------------------------------------------------------------------------- /terraform/production/backend-config.example: -------------------------------------------------------------------------------- 1 | access_key = 2 | secret_key = 3 | bucket = 4 | -------------------------------------------------------------------------------- /app/views/jobs/index.html.erb: -------------------------------------------------------------------------------- 1 |
If you are the application owner check the logs for more information.
64 |Maybe you tried to change something you didn't have access to.
63 |If you are the application owner check the logs for more information.
65 |You may have mistyped the address or the page may have moved.
63 |If you are the application owner check the logs for more information.
65 |