Skip to content
Open
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ These resources are a great way to meet the people behind the project, ask quest

## Learn about the project

If you aren't already familiar with what CollectOSS is, please make sure you've read the [README](README.md) to get a primer on our project, and maybe take a look around the [documentation](https://collectoss.readthedocs.io/en/release/) so you know what we are about. You can also hang out in Slack or join our community meetings to learn more about what we do.
If you aren't already familiar with what CollectOSS is, please make sure you've read the [README](README.md) to get a primer on our project, and maybe take a look around the [documentation](https://docs.collectoss.org/en/latest/) so you know what we are about. You can also hang out in Slack or join our community meetings to learn more about what we do.

## Opening an issue
If you're experiencing an issue with CollectOSS you can search for your problem or question on our [issues](https://github.com/chaoss/collectoss/issues) page to see if someone else has already reported it. If you cannot find your issue, please feel free to [open a new one](https://github.com/chaoss/collectoss/issues/new/choose).
Expand Down Expand Up @@ -53,7 +53,7 @@ Github has an article called [Syncing a fork](https://docs.github.com/en/pull-re

## Helpful Links

- [CollectOSS stable documentation](https://collectoss.readthedocs.io/en/release/)
- [CollectOSS stable documentation](https://docs.collectoss.org/en/latest/)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have fixed the release build of the docs. Can you update this URL (and the others that were similarly changed) so that it points to the release docs on the new domain?

- [CHAOSS Getting Started page](https://chaoss.community/kb-getting-started/)

**Git & GitHub**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Basic initial setup can be completed in a few minutes as follows:
3. Copy the `environment.txt` file to a new file called `.env` and fill in values for the required variables
4. Run `docker compose up` to start the containers

Check out the [CollectOSS Documentation](https://collectoss.readthedocs.io) for more detailed setup instructions and troubleshooting steps.
Check out the [CollectOSS Documentation](https://docs.collectoss.org) for more detailed setup instructions and troubleshooting steps.

## Contributing
We strongly believe that communities are what makes open source so impactful. We invite you to join our community, regardless of your experience level or coding abilities!
Expand Down
2 changes: 1 addition & 1 deletion docker/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ FROM python:3.11-slim-bullseye
LABEL org.opencontainers.image.authors="CHAOSS https://chaoss.community"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.source="https://github.com/chaoss/collectoss"
LABEL org.opencontainers.image.documentation="https://collectoss.readthedocs.io"
LABEL org.opencontainers.image.documentation="https://docs.collectoss.org"

ARG VERSION
LABEL org.opencontainers.image.version=${VERSION}
Expand Down
2 changes: 1 addition & 1 deletion docker/database/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM postgres:16
LABEL org.opencontainers.image.authors="CHAOSS https://chaoss.community"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.source="https://github.com/chaoss/collectoss"
LABEL org.opencontainers.image.documentation="https://collectoss.readthedocs.io"
LABEL org.opencontainers.image.documentation="https://docs.collectoss.org"

ARG VERSION
LABEL org.opencontainers.image.version=${VERSION}
Expand Down
2 changes: 1 addition & 1 deletion docker/keyman/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:3.11.12-alpine
LABEL org.opencontainers.image.authors="CHAOSS https://chaoss.community"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.source="https://github.com/chaoss/collectoss"
LABEL org.opencontainers.image.documentation="https://collectoss.readthedocs.io"
LABEL org.opencontainers.image.documentation="https://docs.collectoss.org"

ARG VERSION
LABEL org.opencontainers.image.version=${VERSION}
Expand Down
2 changes: 1 addition & 1 deletion docker/rabbitmq/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM rabbitmq:4.1-management-alpine
LABEL org.opencontainers.image.authors="CHAOSS https://chaoss.community"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.source="https://github.com/chaoss/collectoss"
LABEL org.opencontainers.image.documentation="https://collectoss.readthedocs.io"
LABEL org.opencontainers.image.documentation="https://docs.collectoss.org"

ARG VERSION
LABEL org.opencontainers.image.version=${VERSION}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ collectoss = "collectoss.application.cli._multicommand:run"

[project.urls]
Homepage = "https://github.com/chaoss/collectoss"
Documentation = "https://collectoss.readthedocs.io/en/latest/"
Documentation = "https://docs.collectoss.org/en/latest/"


############################################################
Expand Down
4 changes: 2 additions & 2 deletions scripts/docker/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function get_github_api_key() {
echo
echo "Please provide a valid GitHub API key."
echo "For more information on how to create the key, visit:"
echo "https://collectoss.readthedocs.io/en/latest/getting-started/installation.html#backend"
echo "https://docs.collectoss.org/en/latest/getting-started/collecting-data.html"
echo "** This is required for CollectOSS to gather data ***"
read -p "GitHub API Key: " github_api_key
blank_confirm github_api_key
Expand All @@ -63,7 +63,7 @@ function get_gitlab_api_key() {
echo
echo "Please provide a valid GitLab API key."
echo "For more information on how to create the key, visit:"
echo "https://collectoss.readthedocs.io/en/latest/getting-started/installation.html#backend"
echo "https://docs.collectoss.org/en/latest/getting-started/collecting-data.html"
echo "** This is required for CollectOSS to gather data ***"
read -p "GitLab API Key: " gitlab_api_key
blank_confirm gitlab_api_key
Expand Down