-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update focused on system setup, deploy, upgrade, and contributi…
…ng (#394) * upgrade: update upgrade steps and migration * Rearrange Contributing page, add WSL distribution steps * docs: update WSL gp image publish, install, and upgrade steps. update ubuntu and node versions * update Box Drive instructions * MetricGroup example cleanup and link * docs: update deploy steps, specifically awscli * docs: new project mention of working with datasets bucket * docs: contributing
- Loading branch information
Showing
8 changed files
with
262 additions
and
162 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import React from "react"; | ||
|
||
export function NodeVersion() { | ||
return <span>20.12</span>; | ||
return <span>22.12.0</span>; | ||
} | ||
|
||
export function UbuntuVersion() { | ||
return <span>22.04 Jammy</span>; | ||
return <span>24.04 Noble</span>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,6 +77,12 @@ cd /workspaces | |
npx @seasketch/[email protected] init 7.0.0-beta.13 | ||
``` | ||
|
||
If you want to install anything other than the latest version you have to run a more specific command. Assume you want to init a new project using version 6.1.2. You would run: | ||
|
||
```sh | ||
npx @seasketch/[email protected] init 6.1.2 | ||
``` | ||
|
||
Tips: | ||
|
||
- the answers to all of the init questions can be changed later, so don't worry if you don't know the answer. | ||
|
@@ -95,6 +101,8 @@ Learn more about your projects [structure](../structure.md) | |
- [Low-level raster report](./sampleproject.md#seamount-report) | ||
- [High-level raster report](./sampleproject.md#coral-species-report) | ||
|
||
If you use the Metric Group feature, there are [examples](../concepts/Concepts.md) of variations for creating them based on the structure of your data. | ||
|
||
## Build Your Project | ||
|
||
The application `build` proceess packages it for deployment. Specifically it: | ||
|
@@ -143,7 +151,14 @@ It will ask you if you want to publish all datasources, or choose from a list. | |
|
||
Your datasources will need to have already been imported using `import:data` and exist in the `data/dist` for this to work. | ||
|
||
Note if you don't publish your datasources, then your local smoke tests may work properly, but your geoprocessing functions will throw file not found errors in production. | ||
Note, if you don't publish your datasources, then your local smoke tests may work properly, but your geoprocessing functions will throw file not found errors in production. | ||
|
||
Note, you can use any and all `aws` commands to look at your datasets bucket or to copy files to/from it. | ||
|
||
```bash | ||
aws s3 ls s3://gp-my-project-datasets | ||
aws s3 cp data/dist/myFile.fgb s3://gp-my-project-datasets | ||
``` | ||
|
||
## Integrate With SeaSketch | ||
|
||
|
Oops, something went wrong.