File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,3 +12,7 @@ src/arema/__pycache__/update_service.cpython-311.pyc
1212src /server /__pycache__ /__init__.cpython-311.pyc
1313src /server /__pycache__ /main.cpython-311.pyc
1414src /__pycache__ /__init__.cpython-311.pyc
15+ tools /__pycache__ /__init__.cpython-311.pyc
16+ tools /python /__pycache__ /__init__.cpython-311.pyc
17+ src /arema /__pycache__ /__init__.cpython-311.pyc
18+ tools /python /converter /__pycache__ /__init__.cpython-311.pyc
Original file line number Diff line number Diff line change @@ -57,7 +57,6 @@ arema-ontology/
5757│ └── docs.yaml # CI/CD for SKOHub builds
5858├── Dockerfile # Container definition
5959├── docker-compose.yml # Multi-service orchestration
60- ├── start.sh # Quick start script
6160├── pyproject.toml # Python dependencies
6261└── uv.lock # Locked dependencies
6362```
@@ -129,10 +128,9 @@ cp .env.dist .env
129128# 2. Place your service_account.json in the repository root
130129
131130# 3. Start services (Fuseki + Ontology Manager)
132- ./start.sh
133- # Or manually: docker compose up -d
131+ docker compose up -d
134132
135- # 3 . Check service health
133+ # 4 . Check service health
136134curl http://localhost:8000/
137135curl http://localhost:3030/$/ping
138136```
Original file line number Diff line number Diff line change @@ -17,9 +17,6 @@ def run_conversion():
1717 """
1818 logger .info ("Starting ontology conversion" )
1919
20- # Set environment variable for the script
21- os .environ ["INPUT_SOURCE" ] = "google_sheets"
22-
2320 # Run conversion
2421 csv2ont .convert_sheets_to_ontology ()
2522
You can’t perform that action at this time.
0 commit comments