Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b33a94a
add in additional changes
cfreedman Apr 17, 2025
dfd7d08
finish non-api unit tests excluding the contig_neighbors
cfreedman Apr 18, 2025
99b672f
small changes
cfreedman Apr 26, 2025
2d8b5f8
add back in gitignore changes
cfreedman Apr 26, 2025
862b58a
separate out data util tests into separate files and their own folder…
cfreedman Apr 26, 2025
f8258fa
keep working on incorporating unit tests
cfreedman Apr 26, 2025
4a4b069
keep working on the rco_geom tests
cfreedman Apr 26, 2025
c1dfbb2
extra tests changes
cfreedman Apr 29, 2025
8f59fd8
remove some vulture dead code checks
cfreedman Apr 29, 2025
4300efe
remove several of the starting postgres files
cfreedman Apr 29, 2025
39c7bc9
some more postgres removals
cfreedman Apr 29, 2025
bdc8dbd
apply changes for file system manager only to the new_etl portion of …
cfreedman Apr 29, 2025
8651ede
removed good portion fo the services calling the postgres connection …
cfreedman Apr 29, 2025
fb71970
add some changes to the config to label root directory and mostly get…
cfreedman Apr 29, 2025
17c92d5
include gitignore changes
cfreedman Apr 29, 2025
ae462e4
merge in some changes to the data utils
cfreedman Apr 29, 2025
9cf5fde
update park priorty to run correctly
cfreedman Apr 29, 2025
f1133d9
refactor some of the file manager for consistent responsibilities acr…
cfreedman Apr 30, 2025
5768f69
swap out additional places for the file manager to handle caching and…
cfreedman Apr 30, 2025
e3e14d6
remove error in file manager argument order
cfreedman Apr 30, 2025
33433b9
fix merge
cfreedman May 1, 2025
4f85814
fix current unit tests, so they are all passing now
cfreedman May 1, 2025
83349e7
break out more of the services into smaller segments for unit testing
cfreedman May 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,14 @@ cleanandgreenphilly_gcloud_bucket/
# personal service account key for GCP
data/src/app/service-account-key.json

# python versions
.python-version

# compiled python files
*.pyc

tmp/

# Local python development files
.python-version

# Cached and temporary data files from pipeline
storage/
2 changes: 1 addition & 1 deletion data/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ COPY src/ .

# Use Pipenv to run the script
# Adjust the path to your main Python script if needed
CMD ["pipenv", "run", "python", "./script.py"]
CMD ["pipenv", "run", "python", "./main.py"]
26 changes: 0 additions & 26 deletions data/Dockerfile-pg

This file was deleted.

26 changes: 0 additions & 26 deletions data/Dockerfile-timescale

This file was deleted.

41 changes: 0 additions & 41 deletions data/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,44 +54,3 @@ services:
extra_hosts:
- host.docker.internal:host-gateway
network_mode: 'host'

postgres:
container_name: cagp-postgres
build:
context: .
dockerfile: Dockerfile-pg
environment:
PGPORT: 5433
POSTGRES_PASSWORD:
restart: always
ports:
- '5433:5433'
volumes:
- database_volume:/var/lib/postgresql/data
- ./init_pg.sql:/docker-entrypoint-initdb.d/init_pg.sql
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
extra_hosts:
- host.docker.internal:host-gateway

postgres-timescale:
container_name: cagp-postgres-timescale
build:
context: .
dockerfile: Dockerfile-timescale
environment:
PGPORT: 5434
POSTGRES_PASSWORD:
restart: always
ports:
- '5434:5434'
volumes:
- timescale_database_volume:/var/lib/postgresql/data
- ./init_pg_timescale.sql:/docker-entrypoint-initdb.d/init_pg.sql
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
extra_hosts:
- host.docker.internal:host-gateway
volumes:
database_volume:
timescale_database_volume:
3 changes: 0 additions & 3 deletions data/init_pg.sql

This file was deleted.

5 changes: 0 additions & 5 deletions data/init_pg_timescale.sql

This file was deleted.

Loading
Loading