From 102dbc6f9acea6bc6af64717a8b96f473568b3e0 Mon Sep 17 00:00:00 2001
From: Adrian Castro <22133246+castdrian@users.noreply.github.com>
Date: Fri, 29 Mar 2024 12:02:58 +0100
Subject: [PATCH] chore: readme adjustment
---
.fleet/settings.json | 5 +++++
README.md | 24 ++++++++++++++++--------
2 files changed, 21 insertions(+), 8 deletions(-)
create mode 100644 .fleet/settings.json
diff --git a/.fleet/settings.json b/.fleet/settings.json
new file mode 100644
index 0000000..6b6f63b
--- /dev/null
+++ b/.fleet/settings.json
@@ -0,0 +1,5 @@
+{
+ "editor.formatOnSave": true,
+ "nodejs.editor.formatOnSave.prettier.mode": "Enabled",
+ "nodejs.editor.formatOnSave.eslint.mode": "Enabled"
+}
\ No newline at end of file
diff --git a/README.md b/README.md
index dadab2b..d009331 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,11 @@
# movie-web native-app
+
-| iOS | Android |
-|:---:|:---:|
+
+| iOS | Android |
+|:--------------------------------------------------------------------------------------------------:|:----------------------------------------------------------------------------------------------------------------------------------------------------:|
|
|
|
## iOS Installation
@@ -12,16 +14,18 @@ used a table bc this shit is annoying to resize to match, someone pls fix
> Sideloading with a paid certificate breaks a few features, most notably:
> - Downloads
> - Alternate App Icons
->
+>
> We reccomend you use a local development certificate if you care about any of these.
- **AltStore:**
- - Click the Add to AltStore badge to add the movie-web repository to AltStore.
+ - Click the Add to AltStore badge to add the movie-web repository to AltStore.
- **Other:**
- - Employ [Sideloadly](https://sideloadly.io/) or a sideloading method of your preference to install the [ipa](https://github.com/movie-web/native-app/releases/latest/download/movie-web.ipa) directly.
+ - Employ [Sideloadly](https://sideloadly.io/) or a sideloading method of your preference to install
+ the [ipa](https://github.com/movie-web/native-app/releases/latest/download/movie-web.ipa) directly.
## About
+
This repository uses [Turborepo](https://turborepo.org) and contains:
```text
@@ -58,10 +62,14 @@ tooling
### When it's time to add a new package
-To add a new package, simply run `pnpm turbo gen init` in the monorepo root. This will prompt you for a package name as well as if you want to install any dependencies to the new package (of course you can also do this yourself later).
+To add a new package, simply run `pnpm turbo gen init` in the monorepo root. This will prompt you for a package name as
+well as if you want to install any dependencies to the new package (of course you can also do this yourself later).
-The generator sets up the `package.json`, `tsconfig.json` and a `index.ts`, as well as configures all the necessary configurations for tooling around your package such as formatting, linting and typechecking. When the package is created, you're ready to go build out the package.
+The generator sets up the `package.json`, `tsconfig.json` and a `index.ts`, as well as configures all the necessary
+configurations for tooling around your package such as formatting, linting and typechecking. When the package is
+created, you're ready to go build out the package.
### References
-This app is based on [create-t3-turbo](https://github.com/t3-oss/create-t3-turbo) and [Turborepo](https://turborepo.org).
+This app is based on [create-t3-turbo](https://github.com/t3-oss/create-t3-turbo)
+and [Turborepo](https://turborepo.org).