-💡 Hints
-
-**Provided Static Site:**
-The course provides a beautiful landing page at `labs/lab18/index.html` that you can deploy. It includes:
-- Modern responsive design
-- Course curriculum overview
-- Learning roadmap
-- "Deployed on IPFS" badge
-
-**Deployment Steps:**
-1. Go to 4EVERLAND Dashboard → Hosting
-2. Click "New Project"
-3. Import from GitHub
-4. Select your repository and branch
-5. Configure:
- - Framework: None (static)
- - Build command: (leave empty for static)
- - Output directory: `labs/lab18` (or root if you moved the file)
-6. Deploy
-
-**Alternative: Create Your Own**
-You can also create your own static site. Keep it simple:
-```html
-
-
-
- My DevOps Portfolio
-
-
- Welcome to My DevOps Journey
- Deployed on IPFS via 4EVERLAND
-
-
+🔧 Python app doesn't run: "command not found" or "No such file or directory"
+
+**Problem:** Your `app.py` doesn't have a shebang line and isn't being wrapped with Python interpreter.
+
+**Solution:** Ensure you're using `makeWrapper` in your `default.nix`:
+
+```nix
+nativeBuildInputs = [ pkgs.makeWrapper ];
+
+installPhase = ''
+ mkdir -p $out/bin
+ cp app.py $out/bin/devops-info-service
+
+ wrapProgram $out/bin/devops-info-service \
+ --prefix PYTHONPATH : "$PYTHONPATH"
+'';
```
-**Access URLs:**
-- 4EVERLAND: `https://your-project.4everland.app`
-- IPFS Gateway: `https://ipfs.4everland.link/ipfs/CID`
+Alternatively, add a shebang to your `app.py`:
+```python
+#!/usr/bin/env python3
+```
----
+