Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,29 @@

Our marketing site. It's amazing. You should check it out. Just click
[here](https://stoat.chat).


## Development Guide

Before contributing, make yourself familiar with [our contribution guidelines](https://developers.stoat.chat/developing/contrib/).

Before getting started, you'll want to install:

- [Git](https://git-scm.com/downloads/)
- [Node.js](https://nodejs.org/en/download)

Then proceed to setup:

```bash
# clone the repository
git clone --recursive https://github.com/stoatchat/stoat.chat.git stoat-website
cd stoat-website

# install all packages
npm install

# run dev server
npm run dev
```

The site will be available at http://localhost:4321.
2 changes: 2 additions & 0 deletions src/lib/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ export default class Consts {
"ms-windows-store://pdp/?ProductId=9nmtvmrj7n1k" as const;
static readonly PLAYSTORE_URL =
"https://play.google.com/store/apps/details?id=chat.revolt" as const;
static readonly AURORASTORE_URL =
"https://f-droid.org/packages/com.aurora.store/" as const;
static readonly FLATHUB_URL =
"https://flathub.org/apps/chat.revolt.RevoltDesktop" as const;
static readonly TESTFLIGHT_URL =
Expand Down
7 changes: 6 additions & 1 deletion src/pages/download/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,15 @@ import Consts from "../../lib/consts";
url: Consts.PLAYSTORE_URL,
primary: true,
},
{
name: "Aurora Store (FOSS)",
url: Consts.AURORASTORE_URL,
primary: false,
}
]}
>
<p slot="description" class="description">
Download Stoat for Android on the Google Play Store.<br />
Download Stoat for Android on the Google Play Store and Aurora Store.<br />
Full tablet and foldable support included.<br />
Android 8.0 and above.
</p>
Expand Down
Loading