Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add arches apps to installed apps #1

Merged
merged 3 commits into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,11 @@ Arches is a new, open-source, web-based, geospatial information system for cultu
Please see the [project page](http://archesproject.org/) for more information on the Arches project.

The Arches Installation Guide and Arches User Guide are available [here](http://archesproject.org/documentation/).

Getting started ...

```
python manage.py packages -o load_package -a synthetic_data
python manage.py migrate
```

6 changes: 5 additions & 1 deletion abac_permissions_demo/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,15 @@
"arches.app.models",
"arches.management",
"guardian",
"captcha",
"django_recaptcha",
"revproxy",
"corsheaders",
"oauth2_provider",
"django_celery_results",
# "silk",
"abac_permissions_demo", # Ensure the project is listed before any other arches applications
"synthetic_data",
"rule_based_perms",
)

# Placing this last ensures any templates provided by Arches Applications
Expand Down Expand Up @@ -417,6 +419,8 @@
# ('es', _('Spanish')),
]

PERMISSION_FRAMEWORK = "arches_filtered_permissions.ArchesFilteredPermissionFramework"

# override this to permenantly display/hide the language switcher
SHOW_LANGUAGE_SWITCH = len(LANGUAGES) > 1

Expand Down
Loading