{"id":13482560,"url":"https://github.com/abilian/abilian-sbe","last_synced_at":"2025-06-10T17:15:41.230Z","repository":{"id":23712395,"uuid":"27084956","full_name":"abilian/abilian-sbe","owner":"abilian","description":"Abilian Social Business Engine - an enterprise social networking / collaboration platform.","archived":false,"fork":false,"pushed_at":"2023-03-04T03:35:06.000Z","size":8885,"stargazers_count":68,"open_issues_count":21,"forks_count":10,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-06-09T11:34:18.676Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.abilian.com/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abilian.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.rst","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2014-11-24T16:50:59.000Z","updated_at":"2024-08-28T17:12:12.000Z","dependencies_parsed_at":"2024-01-07T00:13:45.696Z","dependency_job_id":"d6d99e67-75cf-4fef-b0c1-d5166ad5b04e","html_url":"https://github.com/abilian/abilian-sbe","commit_stats":{"total_commits":1627,"total_committers":13,"mean_commits":"125.15384615384616","dds":0.3829133374308543,"last_synced_commit":"98bf9ef2bb3ee25e02f751a32a4df648cb6c3e60"},"previous_names":[],"tags_count":105,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilian%2Fabilian-sbe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilian%2Fabilian-sbe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilian%2Fabilian-sbe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilian%2Fabilian-sbe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abilian","download_url":"https://codeload.github.com/abilian/abilian-sbe/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abilian%2Fabilian-sbe/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259114710,"owners_count":22807255,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-07-31T17:01:03.268Z","updated_at":"2025-06-10T17:15:41.201Z","avatar_url":"https://github.com/abilian.png","language":"Java","funding_links":[],"categories":["Software","\u003ca id=\"tag-cms\" href=\"#tag-cms\"\u003eCMS\u003c/a\u003e","Communication systems","通讯系统"],"sub_categories":["Communication - Social Networks and Forums","Social Networks and Forums","社交网络与论坛"],"readme":"About\n=====\n\nAbilian SBE (Social Business Engine) is a platform for social business applications, and more specifically collaborative / enterprise 2.0 business applications, such as enterprise social networks (ESN).\n\nAbilian SBE revolves around the concept of *communities*, which are collaborative spaces with services such as lightweight document management, discussions, wikis, user timelines, etc.\n\nIt is based on the `Abilian Core \u003chttp://abilian-core.readthedocs.org/en/latest/\u003e`_ project which provide the basic services, on top of Flask and SQLAlchemy.\n\nAbilian SBE is used by several major customers in production, since mid 2013.\n\n\n\n.. image:: https://circleci.com/gh/abilian/abilian-sbe.svg?style=svg\n   :target: https://circleci.com/gh/abilian/abilian-sbe\n\n.. image:: https://static.pepy.tech/badge/abilian-core\n   :target: https://pepy.tech/project/abilian-core\n\n\nScreenshots\n-----------\n\n.. image:: https://raw.githubusercontent.com/abilian/abilian-sbe/master/docs/images/screenshot-3.png\n\n.. image:: https://raw.githubusercontent.com/abilian/abilian-sbe/master/docs/images/screenshot-2.png\n\n.. image:: https://raw.githubusercontent.com/abilian/abilian-sbe/master/docs/images/screenshot-1.png\n\n\nInstall\n=======\n\nPrerequisites (native dependencies)\n-----------------------------------\n\n- Python 2.7, ``virtualenv``, ``pip``\n- `Redis \u003chttp://redis.io/\u003e`_\n- Sqlite, or a postgresql database.\n- A few image manipulation libraries (``libpng``, ``libjpeg``...)\n- ``poppler-utils``, ``unoconv``, ``LibreOffice``, ``ImageMagick``.\n- `{Less} \u003chttp://lesscss.org/\u003e`__ css pre-processor\n- A Java environment (JRE 1.7 for example). The `closure compiler\n  \u003chttps://developers.google.com/closure/compiler/\u003e`_ is used for minifying\n  javascript files. You don't have to install the compiler yourself, but a Java\n  environment is required.\n\nGet a working application\n-------------------------\n\nThe following commands will create a virtualenv for the application,\ninstall a script named ``abilian_sbe``, launch development server and\nopen a setupwizard in your browser:\n\n.. code:: bash\n\n    $ virtualenv sbe\n    $ cd sbe; source bin/activate\n    $ pip install -U setuptools pip\n    $ pip install abilian-sbe\n    $ python -m abilian.sbe.app setup_sbe_app\n\nMAC OS + Homebrew\n-----------------\n\nYou will need to install the following packages using homebrew\n(**before** running ``pip install ...``):\n\n::\n\n    brew install python2.7 jpeg git libmagic poppler imagemagick\n\nRunning with gunicorn\n---------------------\n\n.. code:: bash\n\n    gunicorn 'abilian.sbe.app.create_app()'\n\n\nDeveloping\n==========\n\nBranching policy\n----------------\n\nWe currently have two branches:\n\n- `master` for stable version (0.3.x)\n- `develop` for next version (0.4.devx)\n\nTesting\n-------\n\nShort test\n~~~~~~~~~~\n\nMake sure all the dependencies are installed (cf. above), then run ``make\ntest``.\n\nWith coverage\n~~~~~~~~~~~~~\n\nRun ``make test-with-coverage``.\n\nFull test suite\n~~~~~~~~~~~~~~~\n\nInstall `tox \u003chttp://pypi.python.org/pypi/tox\u003e`_. Run ``tox -e ALL``.\n\n2 environments are available:\n\n- ``py27``: uses in-memory sqlite\n- ``py27_postgres``: uses local postgresql server (you need to first create a\n   database, and user/password; tox uses environment variables\n   ``POSTGRES_HOST``, ``POSTGRES_PORT``, ``POSTGRES_DB``, ``POSTGRES_USER``,\n   ``POSTGRES_PASSWORD``)\n\nBuild Status\n------------\n\nThe project is under continuous integration with Travis and CircleCI:\n\n.. image:: https://travis-ci.org/abilian/abilian-sbe.svg?branch=master\n   :target: https://travis-ci.org/abilian/abilian-sbe\n\n.. image:: https://coveralls.io/repos/abilian/abilian-sbe/badge.svg?branch=master\n   :target: https://coveralls.io/r/abilian/abilian-sbe?branch=master\n\nLinks\n=====\n\n- `Discussion list (Google Groups) \u003chttps://groups.google.com/forum/#!foru      m/abilian-users\u003e`_\n- `Documentation \u003chttp://docs.abilian.com/\u003e`_\n- `GitHub repository \u003chttps://github.com/abilian/abilian-sbe\u003e`_\n- `Corporate support \u003chttp://www.abilian.com\u003e`_\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabilian%2Fabilian-sbe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabilian%2Fabilian-sbe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabilian%2Fabilian-sbe/lists"}