Skip to content

Commit

Permalink
Update the git clone command to use tag 2.4.0 (#1229)
Browse files Browse the repository at this point in the history
### Feature or Bugfix
- Bugfix

### Detail
Update docs to do git clone on latest released tag

### Relates
- <URL or Ticket>

### Security
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
dlpzx authored Apr 30, 2024
1 parent 7742042 commit 112f50b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pages/deploy/deploy_aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ 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/data-dot-all/dataall.git --branch v2.3.0
git clone https://github.com/data-dot-all/dataall.git --branch v2.4.0
cd dataall
```
## 2. Setup Python virtualenv <a name="env"></a>
Expand Down
2 changes: 1 addition & 1 deletion pages/deploy/deploy_locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ 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/data-dot-all/dataall.git --branch v2.3.0
git clone https://github.com/data-dot-all/dataall.git --branch v2.4.0
```

With docker compose we orchestrate the build of 5 containers: frontend, db, graphql, cdkproxy, opensearch.
Expand Down

0 comments on commit 112f50b

Please sign in to comment.