Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfdsilva committed Nov 21, 2023
2 parents 9d12a50 + a176b06 commit 7e9bd84
Show file tree
Hide file tree
Showing 480 changed files with 10,900 additions and 15,268 deletions.
59 changes: 13 additions & 46 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,30 +13,26 @@ on:
branches-ignore:
- 'main'

env:
NODE: 16
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
prep:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node.js ${{ env.NODE }}
uses: actions/setup-node@v1
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE }}
node-version-file: '.nvmrc'

- name: Cache node_modules
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-node-modules
with:
path: node_modules
Expand All @@ -51,15 +47,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node.js ${{ env.NODE }}
uses: actions/setup-node@v1
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE }}
node-version-file: '.nvmrc'

- name: Cache node_modules
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-node-modules
with:
path: node_modules
Expand All @@ -70,32 +66,3 @@ jobs:

- name: Lint
run: yarn lint

- name: Lint styles 💅
run: yarn lint:css

test:
needs: prep
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js ${{ env.NODE }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE }}

- name: Cache node_modules
uses: actions/cache@v2
id: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}

- name: Install
run: yarn install

- name: Test
run: yarn test
28 changes: 12 additions & 16 deletions .github/workflows/deploy-gh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ on:
branches:
- 'main'

env:
NODE: 16
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: write
Expand All @@ -16,28 +17,23 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node.js ${{ env.NODE }}
uses: actions/setup-node@v1
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE }}
node-version-file: '.nvmrc'

- name: Cache node_modules
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}

- name: Cache dist
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-dist
with:
path: public
Expand All @@ -55,17 +51,17 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Restore dist cache
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-dist
with:
path: public
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.2.5
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
clean: true
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
18
31 changes: 7 additions & 24 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://satsummit.io">
<img alt="Satsummit satellite icon" src="./src/images/satsummit-logo-symbol-pos.svg" width="60" />
<img alt="Satsummit satellite icon" src="./static/meta/icon-192.png" width="60" />
</a>
</p>
<h1 align="center">
Expand All @@ -11,7 +11,6 @@ The Satsummit website is built using [Gatsby](https://www.gatsbyjs.org/).


- [🚀 Start developing](#-start-developing)
- [🧐 What's inside?](#-whats-inside)
- [🎓 Learning Gatsby](#-learning-gatsby)
- [💫 Deploy](#-deploy)

Expand All @@ -22,7 +21,7 @@ The Satsummit website is built using [Gatsby](https://www.gatsbyjs.org/).

To set up the development environment for this website, you'll need to install the following on your system:

- [Node](http://nodejs.org/) v16 (To manage multiple node versions we recommend [nvm](https://github.com/creationix/nvm))
- [Node](http://nodejs.org/) v18 (To manage multiple node versions we recommend [nvm](https://github.com/creationix/nvm))
- [Yarn](https://yarnpkg.com/) Package manager

1. **Make sure to use the correct node version.**
Expand Down Expand Up @@ -53,33 +52,17 @@ The Satsummit website is built using [Gatsby](https://www.gatsbyjs.org/).
4. **Open the source code and start editing!**
Your site is now running at `http://localhost:8000`!
Your site is now running at `http://localhost:9000`!
_Note: You'll also see a second link: _`http://localhost:8000/___graphql`_. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the [Gatsby tutorial](https://www.gatsbyjs.org/tutorial/part-five/#introducing-graphiql)._

## 🧐 What's inside?

A quick look at the top-level files and directories and some notes around the project structure.

TODO: Complete

.
├── node_modules
├── src
├── .gitignore
├── .prettierrc
├── .eslintrc
├── yarn.lock
├── package.json
└── README.md
_Note: You'll also see a second link: _`http://localhost:9000/___graphql`_. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the [Gatsby tutorial](https://www.gatsbyjs.com/docs/tutorial/getting-started/part-4/)._

## 🎓 Learning Gatsby

Looking for more guidance? Full documentation for Gatsby lives [on the website](https://www.gatsbyjs.org/). Here are some places to start:
Looking for more guidance? Full documentation for Gatsby lives [on the website](https://www.gatsbyjs.com/). Here are some places to start:

- **For most developers, we recommend starting with our [in-depth tutorial for creating a site with Gatsby](https://www.gatsbyjs.org/tutorial/).** It starts with zero assumptions about your level of ability and walks through every step of the process.
- **For most developers, we recommend starting with our [in-depth tutorial for creating a site with Gatsby](https://www.gatsbyjs.com/docs/tutorial/).** It starts with zero assumptions about your level of ability and walks through every step of the process.

- **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.org/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar.
- **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.com/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar.

## 💫 Deploy

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<p align="center">
<a href="https://satsummit.io">
<img alt="Satsummit satellite icon" src="./src/images/satsummit-logo-symbol-pos.svg" width="60" />
<img alt="Satsummit satellite icon" src="./static/meta/icon-192.png" width="60" />
</a>
</p>
<h1 align="center">
Welcome
</h1>

Website for #SatSummit 2022, a one day of presentations and discussions about satellite imagery and data processing capabilities that brings together the satellite industry and the global development leaders.
Website for #SatSummit 2024, a one day of presentations and discussions about satellite imagery and data processing capabilities that brings together the satellite industry and the global development leaders.

## 🚀 Start developing

Expand Down
7 changes: 0 additions & 7 deletions content/events/28-0800-breakfast.md

This file was deleted.

10 changes: 0 additions & 10 deletions content/events/28-0900-state-of-satsummit.md

This file was deleted.

13 changes: 0 additions & 13 deletions content/events/28-0910-state-of-satellite.md

This file was deleted.

7 changes: 0 additions & 7 deletions content/events/28-0955-break-1.md

This file was deleted.

16 changes: 0 additions & 16 deletions content/events/28-1000-urgency-opportunity.md

This file was deleted.

7 changes: 0 additions & 7 deletions content/events/28-1045-break-2.md

This file was deleted.

15 changes: 0 additions & 15 deletions content/events/28-1050-the-implementers.md

This file was deleted.

7 changes: 0 additions & 7 deletions content/events/28-1135-break-3.md

This file was deleted.

16 changes: 0 additions & 16 deletions content/events/28-1140-the-providers.md

This file was deleted.

10 changes: 0 additions & 10 deletions content/events/28-1225-announcements.md

This file was deleted.

7 changes: 0 additions & 7 deletions content/events/28-1230-lunch.md

This file was deleted.

14 changes: 0 additions & 14 deletions content/events/28-1345-characterized-by-conflict.md

This file was deleted.

7 changes: 0 additions & 7 deletions content/events/28-1430-break-4.md

This file was deleted.

Loading

0 comments on commit 7e9bd84

Please sign in to comment.