Skip to content

Commit af6130c

Browse files
author
AREMA Ontology Bot
committed
chore: clean up
1 parent dfcb88c commit af6130c

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,7 @@ src/arema/__pycache__/update_service.cpython-311.pyc
1212
src/server/__pycache__/__init__.cpython-311.pyc
1313
src/server/__pycache__/main.cpython-311.pyc
1414
src/__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

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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
136134
curl http://localhost:8000/
137135
curl http://localhost:3030/$/ping
138136
```

src/arema/update_service.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)