CoolFace
Datasetpublic

Ecode2254/replit-alternative

๐Ÿš€ Replit Alternative โ€” Free Self-Hosted Coding Environment A fully free, self-hosted coding platform combining the best features from Replit, Gitpod, GitHub Codespaces, and more. Run your own cloud IDE with AI assistance, instant deployments, and collaborative features. โœจ Features Feature What You Get ๐Ÿ–ฅ๏ธ Browser IDE Full VS Code in your browser (code-server) ๐Ÿค– AI Coding Assistant Local LLM-powered autocomplete & chat (Continue.dev + Ollama) ๐Ÿš€โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/Ecode2254/replit-alternative.

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes6downloads
devcontainer.json29 linesDownload Raw Back to python
1{2  "name": "Python Development",3  "image": "mcr.microsoft.com/devcontainers/python:3.11",4  "features": {5    "ghcr.io/devcontainers/features/node:1": {},6    "ghcr.io/devcontainers/features/docker-in-docker:2": {},7    "ghcr.io/devcontainers/features/github-cli:1": {}8  },9  "customizations": {10    "vscode": {11      "extensions": [12        "ms-python.python",13        "ms-python.black-formatter",14        "ms-python.isort",15        "ms-toolsai.jupyter",16        "continue.continue"17      ],18      "settings": {19        "python.defaultInterpreterPath": "/usr/local/bin/python",20        "python.linting.enabled": true,21        "python.formatting.provider": "black",22        "editor.formatOnSave": true23      }24    }25  },26  "postCreateCommand": "pip install --user -r requirements.txt 2>/dev/null || echo 'No requirements.txt found'",27  "remoteUser": "vscode",28  "forwardPorts": [8000, 3000, 5000, 8080]29}