This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Generate static JSON analysis files from INAD and BAZL Excel data. | |
| This script is run by GitHub Actions when new data is uploaded. | |
| """ | |
| import json | |
| import os | |
| import sys | |
| from datetime import datetime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Analyze Data and Deploy | |
| on: | |
| push: | |
| paths: | |
| - 'data/**' | |
| branches: | |
| - main | |
| workflow_dispatch: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useState, useEffect } from 'react'; | |
| import { Settings, Save, RefreshCw, Upload, Server, FileSpreadsheet, Github, ExternalLink } from 'lucide-react'; | |
| import { useData } from '../context/DataContext'; | |
| const Configuration = ({ translations = {} }) => { | |
| const { | |
| config, | |
| updateConfig, | |
| uploadFiles, | |
| loadServerFiles, |