Deleted files. Updated gitignore
12
.gitignore
vendored
@@ -11,13 +11,13 @@ coverage/
|
|||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
.venv
|
.venv
|
||||||
.playwright-mcp/
|
.playwright-mcp
|
||||||
|
|
||||||
#Data Import Files
|
#Data Import Files
|
||||||
data/make-model-import/output/*.sql
|
data/vehicle-etl/output/*.sql
|
||||||
data/make-model-import/vehapi.key
|
data/vehicle-etl/vehapi.key
|
||||||
data/make-model-import/snapshots/*
|
data/vehicle-etl/snapshots/*
|
||||||
!data/make-model-import/snapshots/.gitkeep
|
!data/vehicle-etl/snapshots/.gitkeep
|
||||||
|
|
||||||
# K8s-aligned configuration and secret mounts (real files ignored; examples committed)
|
# K8s-aligned configuration and secret mounts (real files ignored; examples committed)
|
||||||
config/**
|
config/**
|
||||||
@@ -27,4 +27,4 @@ config/**
|
|||||||
secrets/**
|
secrets/**
|
||||||
!secrets/
|
!secrets/
|
||||||
!secrets/**/
|
!secrets/**/
|
||||||
!secrets/**/*.example
|
!secrets/**/*.example
|
||||||
|
Before Width: | Height: | Size: 99 KiB |
|
Before Width: | Height: | Size: 99 KiB |
|
Before Width: | Height: | Size: 99 KiB |
|
Before Width: | Height: | Size: 99 KiB |
|
Before Width: | Height: | Size: 101 KiB |
|
Before Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 99 KiB |
|
Before Width: | Height: | Size: 99 KiB |
|
Before Width: | Height: | Size: 75 KiB |
@@ -36,6 +36,6 @@ Step 1: Fetch Data from VehAPI
|
|||||||
# Full ETL workflow
|
# Full ETL workflow
|
||||||
./reset_database.sh # Clear old data
|
./reset_database.sh # Clear old data
|
||||||
python3 vehapi_fetch_snapshot.py # Fetch from API
|
python3 vehapi_fetch_snapshot.py # Fetch from API
|
||||||
python3 etl_generate_sql.py # Generate SQL
|
python3 etl_generate_sql.py --snapshot-path snapshots/<date> # Generate SQL
|
||||||
./import_data.sh # Import to Postgres
|
./import_data.sh # Import to Postgres
|
||||||
docker compose exec mvp-redis redis-cli FLUSHALL # Flush Redis Cache for front end
|
docker compose exec mvp-redis redis-cli FLUSHALL # Flush Redis Cache for front end
|
||||||
|
|||||||
@@ -24,10 +24,7 @@ You are a senior application architect specializing in modern web applications.
|
|||||||
Read README.md CLAUDE.md and AI-INDEX.md to understand this code repository in the context of this change.
|
Read README.md CLAUDE.md and AI-INDEX.md to understand this code repository in the context of this change.
|
||||||
|
|
||||||
*** FEATURE ***
|
*** FEATURE ***
|
||||||
- Vehicles feature. This will include all vehicle cards and details. The photo should display where ever possible that it own't distort the original image too much.
|
- The mobile site UX.
|
||||||
|
|
||||||
*** CHANGES TO IMPLEMENT ***
|
*** CHANGES TO IMPLEMENT ***
|
||||||
Your task is to create a plan to improve the vehicles feature. You need to add the ability to upload a custom image of the vehicle. If there is no custom image uploaded, default it to the make logo which is located at @frontend/public/images/makes/. If the make photo does exist, default to a neutral color in gray.
|
The logo for "Log Fuel" will wrap depending on what screen is highlighted. It appears that the font size changes based on if the button is selected or not. Update that so that the font doesn't change.
|
||||||
|
|
||||||
*** Explore Agent ***
|
|
||||||
When you explore for this implementation, look to see if any work has already been done.
|
|
||||||