Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
48 changes: 0 additions & 48 deletions .github/workflows/ci-cd.yml

This file was deleted.

49 changes: 28 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,36 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies (bun install)
node_modules

# dependencies
/node_modules
/.pnp
.pnp.js
# output
out
dist
build
.react-router
*.tgz

# testing
/coverage
/.vscode
# code coverage
coverage
*.lcov

# production
/build
/.next
# logs
logs
_.log
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json

# misc
.DS_Store
.env.local
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
keyFile.js
mapsKey.js
test-criteria.js
openstates-org-api-key.txt
.env.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
# caches
.eslintcache
.cache
*.tsbuildinfo

# IntelliJ based IDEs
.idea

# Finder (MacOS) folder config
.DS_Store
107 changes: 107 additions & 0 deletions .vercel/react-router-build-result.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
{
"buildManifest": {
"serverBundles": {
"nodejs_eyJydW50aW1lIjoibm9kZWpzIn0": {
"id": "nodejs_eyJydW50aW1lIjoibm9kZWpzIn0",
"file": "build/server/nodejs_eyJydW50aW1lIjoibm9kZWpzIn0/index.js",
"config": {
"runtime": "nodejs"
}
}
},
"routeIdToServerBundleId": {
"routes/home": "nodejs_eyJydW50aW1lIjoibm9kZWpzIn0",
"routes/voterinfo": "nodejs_eyJydW50aW1lIjoibm9kZWpzIn0"
},
"routes": {
"root": {
"id": "root",
"file": "app/root.tsx",
"path": "",
"config": {}
},
"routes/home": {
"id": "routes/home",
"parentId": "root",
"file": "app/routes/home.tsx",
"index": true,
"config": {
"runtime": "nodejs"
}
},
"routes/voterinfo": {
"id": "routes/voterinfo",
"parentId": "root",
"file": "app/routes/voterinfo.tsx",
"path": "voterinfo",
"config": {
"runtime": "nodejs"
}
}
}
},
"reactRouterConfig": {
"appDirectory": "/app/app",
"basename": "/",
"buildDirectory": "/app/build",
"future": {
"unstable_optimizeDeps": false,
"unstable_passThroughRequests": false,
"unstable_subResourceIntegrity": false,
"unstable_trailingSlashAwareDataRequests": false,
"unstable_previewServerPrerendering": false,
"v8_middleware": false,
"v8_splitRouteModules": false,
"v8_viteEnvironmentApi": false
},
"routes": {
"root": {
"id": "root",
"file": "root.tsx",
"path": ""
},
"routes/home": {
"id": "routes/home",
"parentId": "root",
"file": "routes/home.tsx",
"index": true
},
"routes/voterinfo": {
"id": "routes/voterinfo",
"parentId": "root",
"file": "routes/voterinfo.tsx",
"path": "voterinfo"
}
},
"routeDiscovery": {
"mode": "lazy",
"manifestPath": "/__manifest"
},
"serverBuildFile": "index.js",
"serverModuleFormat": "esm",
"ssr": true,
"allowedActionOrigins": false,
"unstable_routeConfig": [
{
"id": "root",
"path": "",
"file": "root.tsx",
"children": [
{
"file": "routes/home.tsx",
"index": true
},
{
"file": "routes/voterinfo.tsx",
"path": "voterinfo"
}
]
}
]
},
"viteConfig": {
"build": {
"assetsDir": "assets"
}
}
}
41 changes: 0 additions & 41 deletions Components/Cards/AddressCard.jsx

This file was deleted.

74 changes: 0 additions & 74 deletions Components/Cards/CountdownTimer.jsx

This file was deleted.

Loading