SeaSensors is a website showcasing recorded blasts from dynamite fishing off Tanzania’s coast and uses the data (location, time, magnitude of blasts) to inform the public and officials through maps and data-driven stories. Accessible at
alpha.seasensors.africa
Gatsby's default starter
Kick off your project with this default boilerplate. This barebones starter ships with the main Gatsby configuration files you might need.
_Have another more specific idea? You may want to check out our vibrant collection of official and community-created starters._
## 🚀 Quick start
1. **Create a Gatsby site.**
Use the Gatsby CLI to create a new site, specifying the default starter.
```sh
# create a new Gatsby site using the default starter
npx gatsby new my-default-starter
```
1. **Start developing.**
Navigate into your new site’s directory and start it up.
```sh
cd my-default-starter/
gatsby develop
```
1. **Open the source code and start editing!**
Your site is now running at `
localhost`!
*Note: You'll also see a second link: `
localhost`. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the Gatsby tutorial.*
Open the `my-default-starter` directory in your code editor of choice and edit `src/pages/index.js`. Save your changes and the browser will update in real time!
## 🧐 What's inside?
A quick look at the top-level files and directories you'll see in a Gatsby project.
.
├── node_modules
├── src
├── .gitignore
├── .prettierrc
├── gatsby-browser.js
├── gatsby-config.js
├── gatsby-node.js
├── gatsby-ssr.js
├── LICENSE
├── package-lock.json
├── package.json
├── README.md
└── yarn.lock
1. **`/node_modules`**: This directory contains all of the modules of code that your project depends on (npm packages) are automatically installed.
2. **`/src`**: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. `src` is a convention for “source code”.
3. **`.gitignore`**: This file tells git which files it should not track / not maintain a version history for.
4. **`.prettierrc`**: This is a configuration file for Pretti …