-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathwho-owns-what.yml
70 lines (70 loc) · 2.05 KB
/
who-owns-what.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
dependencies:
# These are NYCDB datasets needed by the SQL scripts.
- pluto_latest
- rentstab_summary
- rentstab
- rentstab_v2
- marshal_evictions
- hpd_registrations
- hpd_violations
- hpd_complaints
- dof_exemptions
- acris
- nycha_bbls
- oca
api_dependencies:
# These are NYCDB datasets that aren't needed by the
# SQL scripts, but which the Django server uses
# for the WoW API.
- hpd_complaints
- dob_violations
- ecb_violations
- dobjobs
- rentstab
- rentstab_v2
oca_s3_objects:
- "public/oca_addresses_with_bbl.csv"
oca_pre_sql:
# Create tables in the WOW/NYCDB DB to populate from CSVs via S3 as part of
# the private OCA level-2 process
- create_oca_tables.sql
oca_post_sql:
# Scripts for OCA data to run after the above tables have been created and populated
- oca_evictions_bldgs.sql
- oca_evictions_monthly.sql
signature_s3_objects:
- "signature_unhp_data.csv"
signature_pre_sql:
# Create tables in the WOW/NYCDB DB to populate from CSVs via S3 as part of
# the private signature data process
- create_signature_unhp_table.sql
signature_post_sql:
# Scripts for signature data to run after the above tables have been created and populated
- create_signature_buildings.sql
- create_signature_collections.sql
- create_signature_building_charts.sql
- create_signature_collection_charts.sql
good_cause_sql:
- create_gce_common.sql
- create_gce_screener.sql
- create_gce_eligibility.sql
sql:
# These SQL scripts must be executed in order, as
# some of them depend on others.
- registrations_with_contacts.sql
- create_bldgs_table.sql
- helper_functions.sql
- search_function.sql
- agg_function.sql
- landlord_contact.sql
- create_landlords_table.sql
- create_portfolios_table.sql
extra_nycdb_test_data:
# This is extra data our tests need that we don't
# create ourselves via factories.
- "tests/data/acris_*.csv"
- "tests/data/oca_*.csv"
- "tests/data/rentstab_counts_from_doffer_2022.csv"
- "tests/data/taxbills_joined.csv"
- "tests/data/hpd_complaints_and_problems.csv"