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

Improve ckan-2.10.5 image #153

Merged
merged 22 commits into from
Nov 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
69fbd6e
Update CKAN extensions and remove deprecated config settings
mjanez Oct 7, 2024
380abfb
Add 'hvd_category' field to Solr schema for enhanced indexing
mjanez Oct 7, 2024
52a80e4
Fix uWSGI configuration to handle write errors and optimize performance
mjanez Oct 8, 2024
3af2930
Fix patch extension
mjanez Oct 9, 2024
b6b5125
Update SMTP configuration in .env.example and entrypoint script for D…
mjanez Oct 11, 2024
1da030d
Update README.md to clarify user creation methods in CKAN
mjanez Oct 14, 2024
86c0a73
Add CKANAPI scripts and configuration files for data management
mjanez Oct 14, 2024
2c25c97
Remove Trivy vulnerability scanner steps from Docker master workflow
mjanez Oct 14, 2024
6b9a311
Add robots.txt to prevent crawling of specific site paths
mjanez Oct 15, 2024
fc71cbf
Update README.md to add Solr backup instruction
mjanez Oct 16, 2024
006ab15
Change worker user from 'ckan' to 'root' in harvester and xloader con…
mjanez Oct 17, 2024
de00769
Add comment to clarify permissions for CKAN i18n files in start_ckan.…
mjanez Oct 17, 2024
f670147
fixed smtp on .env.example, added SMTP test server on dev
er123451 Oct 22, 2024
d6dbff7
fixed variable name in .env.example
er123451 Oct 22, 2024
55095c4
removed unnecesary code from ckan setup script
er123451 Oct 22, 2024
0fa21a2
Update Scheming DCAT version to v4.2.1 in Dockerfile
mjanez Oct 23, 2024
e9622de
Add ckanext-openapi and OpenAPI endpoints configuration to .env.example
mjanez Oct 25, 2024
548a01a
Update actions trivy security scan step to 0.28.0 version
mjanez Oct 31, 2024
35b27ff
Merge pull request #156 from er123451/ckan-2.10.5
mjanez Oct 31, 2024
5ef4c29
Fix email_to/error_email_from bugs
mjanez Nov 4, 2024
145778b
Update environment configuration for CKAN and OpenAPI endpoints
mjanez Nov 4, 2024
9df8fa9
Refactor CKAN API scripts: reorganize structure, update logic, and en…
mjanez Nov 4, 2024
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
Prev Previous commit
Next Next commit
Update README.md to clarify user creation methods in CKAN
  • Loading branch information
mjanez committed Oct 14, 2024
commit 1da030d88bb5c680abf5b9867ff03272689314c8
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -643,7 +643,11 @@ If need to use a backup, restore it:


### CKAN. Manage new users
1. Create a new user from the Docker host, for example to create a new user called `user_example`
1. Create a new user directly by a sysadmin in the `{ckan_site_url}/user/register` endpoint

2. Create new user accounts via the API [`user_create`](https://docs.ckan.org/en/2.10/api/#ckan.logic.action.create.user_create)

3. Create a new user from the Docker host, for example to create a new user called `user_example`

```bash
docker exec -it <container-id> ckan -c ckan.ini user add user_example email=user_example@localhost
@@ -658,7 +662,7 @@ If need to use a backup, restore it:
docker exec -it <container-id> ckan -c ckan.ini user remove user_example`
```

1. Create a new user from within the ckan container. You will need to get a session on the running container
4. Create a new user from within the ckan container. You will need to get a session on the running container

```bash
ckan -c ckan.ini user add user_example email=user_example@localhost`
Loading