Skip to content

Commit

Permalink
feat: cmd-194 enable portal nav by default (#903)
Browse files Browse the repository at this point in the history
* style: CMD-194 remove extra space

* feat: CMD-194 enable portal nav by default

* docs: CMD-194 expand CMS database content notice

* docs: CMD-194 misspelling
  • Loading branch information
wesleyboar authored Dec 9, 2024
1 parent 5349064 commit e74a002
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Set up a new local CMS instance.
- This page will automatically be your local homepage.

> **Important**
> A local machine CMS will be empty. It will **not** have content from staging **nor** production. If you need that, follow and adapt instructions to [copy a database](https://confluence.tacc.utexas.edu/x/W4DZDg).
> A local machine CMS will be empty. It will **not** have content from staging **nor** production. If you need that, follow and adapt instructions to [replicate a CMS database](https://tacc-main.atlassian.net/wiki/x/GwBJAg). This requires high-level server access or somone to give you a copy of the content.

> **Note**
> A local machine CMS does **not** include **nor** integrate with an instance of [Core Portal]. To attempt to do that, follow [How to Use a Custom Docker Compose File](https://github.com/TACC/Core-CMS/wiki/How-to-Use-a-Custom-Docker-Compose-File) and [Locally Develop CMS Portal Docs](https://github.com/TACC/Core-CMS/wiki/Locally-Develop-CMS---Portal---Docs). **Help welcome.**
Expand Down
2 changes: 1 addition & 1 deletion taccsite_cms/secrets.example.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
'ENGINE': 'haystack.backends.elasticsearch_backend.ElasticsearchSearchEngine',
'URL': ES_HOSTS,
'INDEX_NAME': ES_INDEX_PREFIX.format('cms'),
'KWARGS': {'http_auth': ES_AUTH }
'KWARGS': {'http_auth': ES_AUTH}
}
}
5 changes: 3 additions & 2 deletions taccsite_cms/settings_local.example.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
SILENCED_SYSTEM_CHECKS = ['captcha.recaptcha_test_key_error']

# To disable the Core-Portal integration
PORTAL_IS_TACC_CORE_PORTAL = False
PORTAL_HAS_LOGIN = False
# IMPORTANT: Do not disable by default, because [Core-Portal clones this file](https://github.com/TACC/Core-Portal/pull/1034)
# PORTAL_IS_TACC_CORE_PORTAL = False
# PORTAL_HAS_LOGIN = False

0 comments on commit e74a002

Please sign in to comment.