gitextract_umptbr62/ ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── functions/ │ ├── getCoordinates.py │ ├── getWeather.ts │ └── kelvinToCelsius.ts ├── interfaces/ │ ├── getCoordinates-py.tsx │ ├── getWeather-ts.tsx │ └── kelvinToCelsius-ts.tsx ├── package-scripts.js ├── package.json ├── requirements.txt ├── symphony/ │ ├── client/ │ │ ├── colors.scss │ │ ├── index.html │ │ ├── index.scss │ │ └── index.tsx │ ├── database/ │ │ ├── destroy.sh │ │ ├── postgrest.conf │ │ └── setup.sh │ ├── server/ │ │ ├── jig.ts │ │ ├── python/ │ │ │ ├── describe.py │ │ │ ├── descriptions.json │ │ │ └── serve.py │ │ ├── service.ts │ │ ├── typescript/ │ │ │ ├── describe.ts │ │ │ ├── descriptions.json │ │ │ └── serve.ts │ │ └── watch.ts │ └── utils/ │ ├── functions.ts │ └── types.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts