├── .gitignore ├── README.md ├── mos.wsgi ├── moscargo.py ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── mobileconfig.png ├── package.png └── readmeScreenshot.png └── templates └── moscargo.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/README.md -------------------------------------------------------------------------------- /mos.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/mos.wsgi -------------------------------------------------------------------------------- /moscargo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/moscargo.py -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/js/npm.js -------------------------------------------------------------------------------- /static/mobileconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/mobileconfig.png -------------------------------------------------------------------------------- /static/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/package.png -------------------------------------------------------------------------------- /static/readmeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/static/readmeScreenshot.png -------------------------------------------------------------------------------- /templates/moscargo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arubdesu/Moscargo/HEAD/templates/moscargo.html --------------------------------------------------------------------------------