{"id":16889805,"url":"https://github.com/benoitc/mt-compono","last_synced_at":"2026-04-08T18:02:29.695Z","repository":{"id":818394,"uuid":"529913","full_name":"benoitc/mt-compono","owner":"benoitc","description":"minimalist cms using Django","archived":false,"fork":false,"pushed_at":"2010-09-15T07:24:10.000Z","size":3197,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-30T00:44:43.320Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"KnpLabs/snappy","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/benoitc.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-02-22T09:47:13.000Z","updated_at":"2020-01-21T11:12:17.000Z","dependencies_parsed_at":"2022-08-16T11:00:40.401Z","dependency_job_id":null,"html_url":"https://github.com/benoitc/mt-compono","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/benoitc/mt-compono","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benoitc%2Fmt-compono","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benoitc%2Fmt-compono/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benoitc%2Fmt-compono/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benoitc%2Fmt-compono/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benoitc","download_url":"https://codeload.github.com/benoitc/mt-compono/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benoitc%2Fmt-compono/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31567227,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T16:59:06.970Z","updated_at":"2026-04-08T18:02:29.662Z","avatar_url":"https://github.com/benoitc.png","language":"JavaScript","readme":"mt-compono\n----------\n\nMinimalist content management system written for `La Mediatheque \u003chttp://www.lamediatheque.be\u003e`_.\n\n\nRequirements\n------------\n\n- `Python \u003chttp://www.python.org\u003e`_ 2.x superior to 2.5 and Django\n- `Django \u003chttp://www.djangoproject.org\u003e`_  \u003e= 1.1.1\n- `Couchdbkit \u003chttp://www.couchdbkit.org\u003e`_ \u003e= 0.4.2\n- `CouchDB \u003chttp://couchdb.apache.org\u003e`_ \u003e= 0.11\n\nInstallation\n------------\n\nBuild Apache CouchDB\n++++++++++++++++++++\n\nHere we build Apache CouchDB in development mode. We use the trunk version \nwaiting 0.11 is released::\n\n\t$ git clone git://github.com/benoitc/couchdb.git\n\t$ cd couchdb\n\t$ ./bootstrap\n\t$ ./configure \u0026\u0026 make \u0026\u0026 make dev\n\t\nLaunch couchdb :\n\n  $ ./utils/run -a etc/couchdb/goldorak_dev.ini\n\t\nDon't forget to install dependencies first : spidermonkey 1.7, icu4c \u0026 erlang. On debian/ubuntu systems do::\n\n\t$ apt-get install automake autoconf libtool help2man\n\t$ apt-get install build-essential erlang libicu-dev libmozjs-dev libcurl4-openssl-dev\n\nInstallation of Compono\n+++++++++++++++++++++++\n\nInstall from sources::\n\n  $ git clone git@github.com:benoitc/mt-compono\n  $ python setup.py install\n\nConfigure your Django Project\n-----------------------------\n\nHere we will show what to edit in your settings file. First you need to add\n`mt-compono` and `couchdbkit` to your lists of applications::\n\n  INSTALLED_APPS = (\n      ...\n      'couchdbkit.ext.django',\n      'mtcompono',\n  )\n  \nAnd allow register the CouchDB database associated::\n\n  COUCHDB_DATABASES = (\n       ('mtcompono', \"http://127.0.0.1:5984/yourdb\"),\n  )\n\nAdd the fallback middleware. .This middleware process unkown urls and send them back to compono:\n\n  MIDDLEWARE_CLASSES = (\n      ...\n      'mtcompono.middleware.ComponoFallbackMiddleware',\n  )\n\nThen Edit your main `urls.py` file and add it to your pattern::\n\n  urlpatterns = pattern('',\n      ...\n      url('^', include('mtcompono.urls')),\n  )\n\nthat's it.\n\nmtcompono media path\n--------------------\n\nIf you want to serve mt-compono media (needed for its admin), copy the `mtcompono/media` folder where you want. You can even customize url by setting `MTCOMPONO_MEDIA_URL` in your settings file::\n\n  MTCOMPONO_MEDIA_URL = '/media/mtcompono' # without trailing slash\n  \nIn development you can configure the media root by settings `MTCOMPONO_MEDIA_ROOT`, but it's generally not needed.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenoitc%2Fmt-compono","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenoitc%2Fmt-compono","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenoitc%2Fmt-compono/lists"}