├── .gitignore ├── README.md ├── manage.py ├── onlineditor ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── run_in_docker.sh └── web ├── __init__.py ├── apps.py ├── engine.py ├── static └── web │ ├── css │ ├── normalize.css │ └── skeleton.css │ └── images │ ├── favicon.png │ └── online-editor-screenshot.png ├── templates └── web │ └── index.html ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/README.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/manage.py -------------------------------------------------------------------------------- /onlineditor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onlineditor/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/onlineditor/settings.py -------------------------------------------------------------------------------- /onlineditor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/onlineditor/urls.py -------------------------------------------------------------------------------- /onlineditor/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/onlineditor/wsgi.py -------------------------------------------------------------------------------- /run_in_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/run_in_docker.sh -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/web/apps.py -------------------------------------------------------------------------------- /web/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/web/engine.py -------------------------------------------------------------------------------- /web/static/web/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/web/static/web/css/normalize.css -------------------------------------------------------------------------------- /web/static/web/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/web/static/web/css/skeleton.css -------------------------------------------------------------------------------- /web/static/web/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/web/static/web/images/favicon.png -------------------------------------------------------------------------------- /web/static/web/images/online-editor-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/web/static/web/images/online-editor-screenshot.png -------------------------------------------------------------------------------- /web/templates/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/web/templates/web/index.html -------------------------------------------------------------------------------- /web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/web/urls.py -------------------------------------------------------------------------------- /web/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besnik/simple-python-online-editor/HEAD/web/views.py --------------------------------------------------------------------------------