Skip to content

Commit

Permalink
Fix documentation links (#947)
Browse files Browse the repository at this point in the history
### Feature or Bugfix
<!-- please choose -->
- Documentation

### Detail
- Fix links in documentation

### Relates


### Security
N/A
Please answer the questions below briefly where applicable, or write
`N/A`. Based on
[OWASP 10](https://owasp.org/Top10/en/).

- Does this PR introduce or modify any input fields or queries - this
includes
fetching data from storage outside the application (e.g. a database, an
S3 bucket)?
  - Is the input sanitized?
- What precautions are you taking before deserializing the data you
consume?
  - Is injection prevented by parametrizing queries?
  - Have you ensured no `eval` or similar functions are used?
- Does this PR introduce any functionality or component that requires
authorization?
- How have you ensured it respects the existing AuthN/AuthZ mechanisms?
  - Are you logging failed auth attempts?
- Are you using or adding any cryptographic features?
  - Do you use a standard proven implementations?
  - Are the used keys controlled by the customer? Where are they stored?
- Are you introducing any new policies/roles/users?
  - Have you used the least-privilege principle? How?


By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.
  • Loading branch information
noah-paige authored Jan 8, 2024
1 parent 466e51a commit ac47f3e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ title: data.all
email: [email protected]
description: >- # this means to ignore newlines until "baseurl:"
An open source development framework to help you build a data marketplace on AWS.
repository: 'awslabs/aws-dataall'
repository: 'data-dot-all/dataall'
baseurl: "/dataall" # the subpath of your site, e.g. /blog
workshop_url: "https://catalog.us-east-1.prod.workshops.aws/workshops/ab79ad6c-13fd-434a-ba44-9783ef2bd879/en-US"
url: "https://github.com/awslabs/aws-dataall" # the base hostname & protocol for your site, e.g. http://example.com
url: "https://github.com/data-dot-all/dataall" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: jekyllrb
github_username: jekyll

Expand Down
8 changes: 4 additions & 4 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
<div>
<nav role="navigation">
<ul>
<li><a class="nav-title" href="/aws-dataall/">data.all</a></li>
<li><a class="nav-item" href="/aws-dataall/concepts" aria-haspopup="true">Basic Concepts</a>
<li><a class="nav-item" href="/aws-dataall/architecture" aria-haspopup="true">Architecture</a>
<li><a class="nav-item" href="/aws-dataall/code" aria-haspopup="true">Code Walkthrough</a>
<li><a class="nav-title" href="/dataall/">data.all</a></li>
<li><a class="nav-item" href="/dataall/concepts" aria-haspopup="true">Basic Concepts</a>
<li><a class="nav-item" href="/dataall/architecture" aria-haspopup="true">Architecture</a>
<li><a class="nav-item" href="/dataall/code" aria-haspopup="true">Code Walkthrough</a>
<li><a class="nav-item" href="{{ site.workshop_url }}" aria-haspopup="true">Getting Started Workshop</a>
</ul>
</nav>
Expand Down
8 changes: 4 additions & 4 deletions _layouts/default_sublevel.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
<div>
<nav role="navigation">
<ul>
<li><a class="nav-title" href="/aws-dataall/">AWS data.all</a></li>
<li><a class="nav-item" href="/aws-dataall/concepts" aria-haspopup="true">Basic Concepts</a>
<li><a class="nav-item" href="/aws-dataall/architecture" aria-haspopup="true">Architecture</a>
<li><a class="nav-item" href="/aws-dataall/code" aria-haspopup="true">Code Walkthrough</a>
<li><a class="nav-title" href="/dataall/">AWS data.all</a></li>
<li><a class="nav-item" href="/dataall/concepts" aria-haspopup="true">Basic Concepts</a>
<li><a class="nav-item" href="/dataall/architecture" aria-haspopup="true">Architecture</a>
<li><a class="nav-item" href="/dataall/code" aria-haspopup="true">Code Walkthrough</a>
<li><a class="nav-item" href="{{ site.workshop_url }}" aria-haspopup="true">Getting Started Workshop</a>
</ul>
</nav>
Expand Down
2 changes: 1 addition & 1 deletion pages/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ access to data.all can see and use the externalId.

From the data.all UI we can download a CloudFormation template of the pivotRole and deploy it in our business account.
Alternatively, you can access this template directly from the
[Github repository/deploy](https://github.com/awslabs/aws-dataall/blob/main/deploy/pivot_role/pivotRole.yaml).
[Github repository/deploy](https://github.com/data-dot-all/dataall/blob/main/deploy/pivot_role/pivotRole.yaml).


## data.all Resources <a name="resources"></a>
Expand Down
6 changes: 3 additions & 3 deletions pages/deploy/deploy_aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ which means that AWS services used by this construct need to be available in the

Clone the GitHub repository from:
```bash
git clone https://github.com/awslabs/aws-dataall.git
cd aws-dataall
git clone https://github.com/data-dot-all/dataall.git
cd dataall
```
## 2. Setup Python virtualenv
From your personal computer or from Cloud9 in the AWS Console, create a python virtual environment
Expand Down Expand Up @@ -485,7 +485,7 @@ If a module depends on other modules we do not need to explicitly define it as a

The following table contains a list of the available modules and their dependencies with a very brief explanation of the
functionality. If you want to know more about each module,
check the [UserGuide](https://github.com/awslabs/aws-dataall/blob/main/UserGuide.pdf) available as PDF in the repository.
check the [UserGuide](https://github.com/data-dot-all/dataall/blob/main/UserGuide.pdf) available as PDF in the repository.

| **Module** | **depends on** | **Description** |
|-----------------|-----------------------------------------------------|---------------------------------------------------------------------------------------|
Expand Down
4 changes: 2 additions & 2 deletions pages/deploy/deploy_locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ data.all is fully dockerized with docker-compose, and can be fully run from your
The first step is to clone the repo.

```bash
git clone https://github.com/awslabs/aws-dataall.git
git clone https://github.com/data-dot-all/dataall.git
```

With docker compose we orchestrate the build of 5 containers: frontend, db, graphql, cdkproxy, opensearch.
You can check the ports assigned to each container in the `docker-compose.yaml` file at the root level of the repo.

```bash
cd aws-dataall
cd dataall
docker-compose up
```

Expand Down

0 comments on commit ac47f3e

Please sign in to comment.