diff --git a/README.md b/README.md index 23fd6fc..fec50dc 100644 --- a/README.md +++ b/README.md @@ -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. \ No newline at end of file diff --git a/src/lib/consts.ts b/src/lib/consts.ts index 431c5a9..1eeb285 100644 --- a/src/lib/consts.ts +++ b/src/lib/consts.ts @@ -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 = diff --git a/src/pages/download/index.astro b/src/pages/download/index.astro index d78a4ea..ae608a0 100644 --- a/src/pages/download/index.astro +++ b/src/pages/download/index.astro @@ -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, + } ]} >

- Download Stoat for Android on the Google Play Store.
+ Download Stoat for Android on the Google Play Store and Aurora Store.
Full tablet and foldable support included.
Android 8.0 and above.