arches


Namearches JSON
Version 7.5.2 PyPI version JSON
download
home_pagehttp://archesproject.org/
SummaryArches is an open-source, web-based, geospatial information system for cultural heritage inventory and management.
upload_time2024-04-18 23:43:46
maintainerNone
docs_urlNone
authorFarallon Geographics, Inc
requires_python>=3.8
licenseGNU AGPL3
keywords django arches cultural heritage
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Arches

Arches is a web-based, geospatial information system for cultural heritage inventory and management. Arches is purpose-built for the international cultural heritage field, and designed to record all types of immovable heritage, including archaeological sites, buildings and other historic structures, landscapes, and heritage ensembles or districts. For more information and background on the Arches project, please visit [archesproject.org](http://archesproject.org/).

For general inquiries and to get technical support from the wider Arches community, visit our [Community Forum](https://community.archesproject.org/).

For general user installation and app documentation, visit [arches.readthedocs.io](https://arches.readthedocs.io).

For the documentation pertaining to the bleeding edge code (what is in the ``master`` branch), visit [arches.readthedocs.io/en/latest](https://arches.readthedocs.io/en/latest).  We welcome new contributors; please see [Contributing to Arches](CONTRIBUTING.md) for details.

Issue reports are encouraged! [Please read this article](http://polite.technology/reportabug.html) before reporting issues.
*   [Report a Bug](https://github.com/archesproject/arches/issues/new?template=bug.md)
*   [File a Feature Ticket](https://github.com/archesproject/arches/issues/new?template=feature.md)

[Version 7.5.2 release notes](https://github.com/archesproject/arches/blob/stable/7.5.2/releases/7.5.2.md)

#### Quick Install

Installation is fully documented in the official documentation, [arches.readthedocs.io/en/stable](https://arches.readthedocs.io/en/stable), but assuming you have all of the dependencies installed you should make a virtual environment, activate it, and then run
```
    pip install arches
```
then
```
    arches-project create myproject
```
enter the new `myproject` directory
```
    cd myproject
```
and run
```
    python manage.py setup_db
    python manage.py runserver
```
in a separate terminal, activate your virtual environment and navigate to the root directory of the project ( you should be on the same level as `package.json`) 
```
    cd myproject/myproject
```
and run
```   
    yarn build_development
```
to create a frontend asset bundle. This process should complete in less than 2 minutes.

Finally, visit `localhost:8000` in a browser (only Chrome is fully supported at this time).

If you run into problems, please review our full [installation documentation](http://arches.readthedocs.io/en/stable/installation/)

#### Release Cycle

Our general release cycle will typically be a functional release (either major if there are backward incompatible changes or minor, if there are not) every 6 months. Each functional release will typically be followed by one or more patch releases. See [semver.org](https://semver.org/) for version numbering.

-   Functional releases will usually introduce new functionality to the application, but could also include styling updates, enhancements to the UX, bug fixes, and performance improvements.
-   Patch releases are really only concerned with fixing any bugs related to the previous release or any other issues not yet addressed

#### Support for previous releases

- Stable releases will be supported with patch releases for at least 18 months. Typically the stable release will be the second or third minor release of a major release. 
- Functional releases (with the exception of stable releases) will be supported only until the next functional release. After that users are expected to upgrade to the latest release on [pypi.python.org](https://pypi.python.org/pypi/arches)

#### Feature roadmap

The following a general plan for the Arches project. Be aware this plan is tentative and subject to change.

## 7.6 LTS - Release date: Sept 15, 2024
- Arches Application improvements
- Activity stream edit logs
- Security enhancements
- Default deny permissions
- Support for pluggable permissions frameworks
- Standalone plugins

## 8.0 - Release date: June 15, 2025
- Support for editing and publishing graphs without having to remove resource instances
- Support for viewing and restoring previous graph publications
- Support for configuring currently published graphs
- Support for search by resource relationship
- Implementation of the Controlled List Manager and reference data type
- Persistent uris for resource instance data
- Implementation of logical deletion of resources
- Bulk Data Manager CLI interface

## 9.0 - Release date: Sept 15, 2027
- Full migration to Vue


            

Raw data

            {
    "_id": null,
    "home_page": "http://archesproject.org/",
    "name": "arches",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "django arches cultural heritage",
    "author": "Farallon Geographics, Inc",
    "author_email": "dev@fargeo.com",
    "download_url": "https://files.pythonhosted.org/packages/29/a7/a3c30472b65108dda07aa278691ec7471139da9195a4fd1ed706c8dd5e82/arches-7.5.2.tar.gz",
    "platform": null,
    "description": "# Arches\n\nArches is a web-based, geospatial information system for cultural heritage inventory and management. Arches is purpose-built for the international cultural heritage field, and designed to record all types of immovable heritage, including archaeological sites, buildings and other historic structures, landscapes, and heritage ensembles or districts. For more information and background on the Arches project, please visit [archesproject.org](http://archesproject.org/).\n\nFor general inquiries and to get technical support from the wider Arches community, visit our [Community Forum](https://community.archesproject.org/).\n\nFor general user installation and app documentation, visit [arches.readthedocs.io](https://arches.readthedocs.io).\n\nFor the documentation pertaining to the bleeding edge code (what is in the ``master`` branch), visit [arches.readthedocs.io/en/latest](https://arches.readthedocs.io/en/latest).  We welcome new contributors; please see [Contributing to Arches](CONTRIBUTING.md) for details.\n\nIssue reports are encouraged! [Please read this article](http://polite.technology/reportabug.html) before reporting issues.\n*   [Report a Bug](https://github.com/archesproject/arches/issues/new?template=bug.md)\n*   [File a Feature Ticket](https://github.com/archesproject/arches/issues/new?template=feature.md)\n\n[Version 7.5.2 release notes](https://github.com/archesproject/arches/blob/stable/7.5.2/releases/7.5.2.md)\n\n#### Quick Install\n\nInstallation is fully documented in the official documentation, [arches.readthedocs.io/en/stable](https://arches.readthedocs.io/en/stable), but assuming you have all of the dependencies installed you should make a virtual environment, activate it, and then run\n```\n    pip install arches\n```\nthen\n```\n    arches-project create myproject\n```\nenter the new `myproject` directory\n```\n    cd myproject\n```\nand run\n```\n    python manage.py setup_db\n    python manage.py runserver\n```\nin a separate terminal, activate your virtual environment and navigate to the root directory of the project ( you should be on the same level as `package.json`) \n```\n    cd myproject/myproject\n```\nand run\n```   \n    yarn build_development\n```\nto create a frontend asset bundle. This process should complete in less than 2 minutes.\n\nFinally, visit `localhost:8000` in a browser (only Chrome is fully supported at this time).\n\nIf you run into problems, please review our full [installation documentation](http://arches.readthedocs.io/en/stable/installation/)\n\n#### Release Cycle\n\nOur general release cycle will typically be a functional release (either major if there are backward incompatible changes or minor, if there are not) every 6 months. Each functional release will typically be followed by one or more patch releases. See [semver.org](https://semver.org/) for version numbering.\n\n-   Functional releases will usually introduce new functionality to the application, but could also include styling updates, enhancements to the UX, bug fixes, and performance improvements.\n-   Patch releases are really only concerned with fixing any bugs related to the previous release or any other issues not yet addressed\n\n#### Support for previous releases\n\n- Stable releases will be supported with patch releases for at least 18 months. Typically the stable release will be the second or third minor release of a major release. \n- Functional releases (with the exception of stable releases) will be supported only until the next functional release. After that users are expected to upgrade to the latest release on [pypi.python.org](https://pypi.python.org/pypi/arches)\n\n#### Feature roadmap\n\nThe following a general plan for the Arches project. Be aware this plan is tentative and subject to change.\n\n## 7.6 LTS - Release date: Sept 15, 2024\n- Arches Application improvements\n- Activity stream edit logs\n- Security enhancements\n- Default deny permissions\n- Support for pluggable permissions frameworks\n- Standalone plugins\n\n## 8.0 - Release date: June 15, 2025\n- Support for editing and publishing graphs without having to remove resource instances\n- Support for viewing and restoring previous graph publications\n- Support for configuring currently published graphs\n- Support for search by resource relationship\n- Implementation of the Controlled List Manager and reference data type\n- Persistent uris for resource instance data\n- Implementation of logical deletion of resources\n- Bulk Data Manager CLI interface\n\n## 9.0 - Release date: Sept 15, 2027\n- Full migration to Vue\n\n",
    "bugtrack_url": null,
    "license": "GNU AGPL3",
    "summary": "Arches is an open-source, web-based, geospatial information system for cultural heritage inventory and management.",
    "version": "7.5.2",
    "project_urls": {
        "Homepage": "http://archesproject.org/"
    },
    "split_keywords": [
        "django",
        "arches",
        "cultural",
        "heritage"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6c30922ca3ae7029177140f15bd46dc0a068efc37e1ae9addae8a31e0e3d04e",
                "md5": "49d438cb54dbac7bb405d1d59c7f3957",
                "sha256": "1a2f53f5de6f3e2fb833f439d5de694b34a622809ed86612dc5964e6e6d1cb5d"
            },
            "downloads": -1,
            "filename": "arches-7.5.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "49d438cb54dbac7bb405d1d59c7f3957",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 28768384,
            "upload_time": "2024-04-18T23:43:31",
            "upload_time_iso_8601": "2024-04-18T23:43:31.945984Z",
            "url": "https://files.pythonhosted.org/packages/e6/c3/0922ca3ae7029177140f15bd46dc0a068efc37e1ae9addae8a31e0e3d04e/arches-7.5.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29a7a3c30472b65108dda07aa278691ec7471139da9195a4fd1ed706c8dd5e82",
                "md5": "f395159fb2dafd012135f01cc5aa7864",
                "sha256": "e17cc2f6aa8deee9f33aac93a303a50088596cbc43561b1a297e86067924ebe5"
            },
            "downloads": -1,
            "filename": "arches-7.5.2.tar.gz",
            "has_sig": false,
            "md5_digest": "f395159fb2dafd012135f01cc5aa7864",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 28083359,
            "upload_time": "2024-04-18T23:43:46",
            "upload_time_iso_8601": "2024-04-18T23:43:46.483829Z",
            "url": "https://files.pythonhosted.org/packages/29/a7/a3c30472b65108dda07aa278691ec7471139da9195a4fd1ed706c8dd5e82/arches-7.5.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-18 23:43:46",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "arches"
}
        
Elapsed time: 0.25220s