From bb9b7904af00ed72af6426210cd3bb60cc59838c Mon Sep 17 00:00:00 2001 From: Mateusz Rostkowski Date: Mon, 11 Mar 2024 16:02:50 +0100 Subject: [PATCH 01/10] chore: update app.json file --- app.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/app.json b/app.json index 7333ffd9..c39ed0e6 100644 --- a/app.json +++ b/app.json @@ -1,14 +1,14 @@ { "expo": { + "owner": "binarapps", + "slug": "expo-typescript-template", "android": { "jsEngine": "hermes", "versionCode": 10, "softwareKeyboardLayoutMode": "pan", "googleServicesFile": "./google-services.json" }, - "assetBundlePatterns": [ - "**/*" - ], + "assetBundlePatterns": ["**/*"], "ios": { "jsEngine": "hermes", "buildNumber": "10", @@ -17,8 +17,6 @@ }, "name": "Template", "orientation": "portrait", - "owner": "binarapps", - "slug": "expo-typescript-template", "splash": { "backgroundColor": "#ffffff", "image": "./assets/splash.png", @@ -41,4 +39,4 @@ "bundler": "metro" } } -} \ No newline at end of file +} From f8a9f8f8c973cd86921a1e18b247732649e703b3 Mon Sep 17 00:00:00 2001 From: Mateusz Rostkowski Date: Mon, 11 Mar 2024 16:03:52 +0100 Subject: [PATCH 02/10] chore: update bootstrap intro docs --- ...BOOTSTRAP_INTRO.md => BOOTSTRAP_INTRO.mdx} | 68 +++++++++++-------- 1 file changed, 38 insertions(+), 30 deletions(-) rename docs/docs/bootstrap/{BOOTSTRAP_INTRO.md => BOOTSTRAP_INTRO.mdx} (69%) diff --git a/docs/docs/bootstrap/BOOTSTRAP_INTRO.md b/docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx similarity index 69% rename from docs/docs/bootstrap/BOOTSTRAP_INTRO.md rename to docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx index 9218ad02..b7133f64 100644 --- a/docs/docs/bootstrap/BOOTSTRAP_INTRO.md +++ b/docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx @@ -10,45 +10,49 @@ tags: description: Bootstrap project structure, that is needed to start development your new project --- +import Details from '@site/src/components/Details' + # BOOTSTRAP - start development 🕐 Bootstrap project structure, that is needed to start development -### **What you need to do to start development?** +## **What you need to do to start development?** + +--- -#### 1. Clone this repository +### 1. Setup repository -There are three types that you can clone the repo: +```bash +git clone git@github.com:binarapps/baca-react-native-template.git +cd expo-ts-template +``` +> Removing git history **(not recomended)** +> +> - do it only if you don't want to keep history of commits - maybe client doesnt want this +> - when you will get rid of git history it could be hard to apply changes made in the starter file +> +> ```bash +> rm -r .git +> git init +> git commit -m "chore: initialize project" +> ``` + +
1. Init using this command (beaware that sometimes this template can't be updated on npm, in that case, clone this repository and reinitialize repozitory for yourself - check third type of setup) ```bash -npx create-expo-app --template=@binarapps/expo-ts-template name_of_your_app +npx create-expo-app --template=@binarapps/baca-react-native-template name_of_your_app ``` 2. Use this as template repo on GitHub ![Github Repository Template](../../static/img/github-repository-template.png) -3. Clone repository - - This usage is usefull when you want to keep git history, thanks to this you can sync incomming changes in this template - -```bash -git clone git@github.com:binarapps/expo-ts-template.git -cd expo-ts-template -yarn -yarn start -``` +
-- in that case you can also reinitialize repozitory if you don't want to keep history of commits - -```bash -rm -r .git -git init -git commit -m "chore: initialize project" -``` +--- -#### 2. Login / register to expo +### 2. Login / register to expo If you have expo account → go login with it @@ -76,7 +80,9 @@ eas login eas whoami ``` -#### 3. Create project on expo.dev +--- + +### 3. Create project on expo.dev a. Sign in to the expo dev console (account created in the first step of repo configuration). @@ -102,18 +108,16 @@ Display name is a name that will be visible in the Expo Dev Console. Slug is the name that will link your Expo application with your code. -![Project create](../../static/img/expo_create.png) +## ![Project create](../../static/img/expo_create.png) -#### 4.Sync project with code. +### 4.Sync project with code. Synchronize the newly created Expo Project to your app. -In app.json file please insert the following: - -a. **slug name** - created in 1-st point. -b. **owner** - organization picked from the list in 1-st point +In `app.json` file please insert the following: - +1. **slug name** - created in 1-st point. +2. **owner** - organization picked from the list in 1-st point ```json { @@ -123,3 +127,7 @@ b. **owner** - organization picked from the list in 1-st point } } ``` + +--- + +### 5. Make environment setup - [tutorial](/docs/doppler-config) From d3a9acdf48c93c1b58449f2663269e3cff63d3a2 Mon Sep 17 00:00:00 2001 From: Mateusz Rostkowski Date: Mon, 11 Mar 2024 16:04:17 +0100 Subject: [PATCH 03/10] fix: properly display links in backend connection docs --- docs/docs/tutorials/BACKEND-CONNECTION.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/tutorials/BACKEND-CONNECTION.md b/docs/docs/tutorials/BACKEND-CONNECTION.md index 37225c4d..f884d1da 100644 --- a/docs/docs/tutorials/BACKEND-CONNECTION.md +++ b/docs/docs/tutorials/BACKEND-CONNECTION.md @@ -16,9 +16,9 @@ description: Backend connection - check how to fetch data from backend and displ This template uses this packages to keep connection with backend: -- (axios)[https://axios-http.com/docs/intro] - direct calls to backend -- (react-query)[https://tanstack.com/query/latest/docs/framework/react/overview] - use hooks that helps displaying data on UI -- (orval)[https://orval.dev/overview] - generating query hooks based on swagger (provided by backend) +- [axios](https://axios-http.com/docs/intro) - direct calls to backend +- [react-query](https://tanstack.com/query/latest/docs/framework/react/overview) - use hooks that helps displaying data on UI +- [orval](https://orval.dev/overview) - generating query hooks based on swagger (provided by backend) ## Generate new query From 14f22c5643a7d2abd564dc8acf38f28a6b87653f Mon Sep 17 00:00:00 2001 From: Mateusz Rostkowski Date: Mon, 11 Mar 2024 16:04:26 +0100 Subject: [PATCH 04/10] chore: update doppler docs --- docs/docs/tutorials/DOPPLER_CONFIG.mdx | 47 ++++++++++++++++++++------ 1 file changed, 37 insertions(+), 10 deletions(-) diff --git a/docs/docs/tutorials/DOPPLER_CONFIG.mdx b/docs/docs/tutorials/DOPPLER_CONFIG.mdx index 46975ec8..8492e801 100644 --- a/docs/docs/tutorials/DOPPLER_CONFIG.mdx +++ b/docs/docs/tutorials/DOPPLER_CONFIG.mdx @@ -16,8 +16,14 @@ import Details from '@site/src/components/Details' # Doppler configuration 🌈 +## Why you need it? + Thanks to doppler you will be able to autoamtically mange your environment varialbes. +This starter have fully integrated doppler configuration, you just need to do few easy steps + +## Configuration +
a. Ideally, the account will be created by the client, the developer will be invited to participate in a workspace @@ -82,14 +88,7 @@ g. Make sure that you have consistent data in each environment. In these step, y
-
- -Use gist to go through the implementation of Doppler tool in the app. \*\* -In doppler_variables.sh file, please use generated Access Tokens from the above. - -
- -
+
a. Enter Access tab: @@ -116,19 +115,47 @@ f. To be able to use environment variables for different environments (qa/stagin
+
+ +1. Create empty file `scripts/doppler_variables.sh` and add this script to new created file. + +- run this command (this will copy template and place it in `scripts/doppler_variables.sh`) + +```bash +yarn prepare:env_file +``` + +2. Add correct values to variables (ask one of the developers for that), example: + +```bash +export DOPPLER_TOKEN_DEVELOPMENT=dp.st.alpha.XXXXxxxxXXXXxxxxXXXXxxxx +``` + +
+
In project dir terminal run: ```bash -yarn prepare:(qa/staging/production) +yarn generate:env:(qa/staging/production) ``` Choose the proper app version depending on the environment for which you want to generate env file. -.env file should be generated and consist of variables passed to Doppler, and some extra doppler +`.env` file should be generated and consist of variables passed to Doppler, and some extra doppler variables as DOPPLER_CONFIG. CONGRATULATION !! 🥳🥳 You have configured the Doppler tool for your project! +--- + +Additionaly you can start the expo server: + +- this will start server and generate env variables + +```bash + yarn start +``` +
From e1d84b9414a07bca483839b7872600489b8f5ef6 Mon Sep 17 00:00:00 2001 From: Mateusz Rostkowski Date: Mon, 11 Mar 2024 16:04:37 +0100 Subject: [PATCH 05/10] chore: update jotai docs --- docs/docs/tutorials/JOTAI.md | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/docs/docs/tutorials/JOTAI.md b/docs/docs/tutorials/JOTAI.md index f0944a73..d8d401ed 100644 --- a/docs/docs/tutorials/JOTAI.md +++ b/docs/docs/tutorials/JOTAI.md @@ -13,27 +13,6 @@ description: Doppler - automatically manage environment variables ## Jotai -Jotai is great state management library - after cloning this repository it don't come with any state management tool, so if you want to have a quick start with something you can follow instructions bellow. +This starter comes with jotai state management tool. Please check documentation on how it work in deatils: -> **Warning**: Only works when git cloning repository (not working for rest methods of cloning repository), so follow the instruction bellow: - -1. Clone repository: - -``` -git clone git@github.com:binarapps/expo-ts-template.git -cd expo-ts-template -yarn -yarn start -``` - -2. Checkout to jotai branch - -``` -git checkout feat/add_jotai_store -``` - -or merge to main - -``` -git merge origin/feat/add_jotai_store -``` +- https://jotai.org/docs/introduction From f0b4264da17d9aa66052d0f6e89b043c620146ba Mon Sep 17 00:00:00 2001 From: Mateusz Rostkowski Date: Mon, 11 Mar 2024 16:08:54 +0100 Subject: [PATCH 06/10] chore: add deploy script to docs --- docs/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/package.json b/docs/package.json index 441a9ac2..b3e78fe0 100644 --- a/docs/package.json +++ b/docs/package.json @@ -12,6 +12,7 @@ "serve": "docusaurus serve", "write-translations": "docusaurus write-translations", "write-heading-ids": "docusaurus write-heading-ids", + "deploy:prod": "vercel --prod -y", "typecheck": "tsc" }, "dependencies": { From b92be39edbbb137618f11f5f53e20d33b5b807a9 Mon Sep 17 00:00:00 2001 From: Mateusz Rostkowski Date: Mon, 11 Mar 2024 16:09:06 +0100 Subject: [PATCH 07/10] chore: add vercel to gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c49f35d8..e0e3fe3d 100644 --- a/.gitignore +++ b/.gitignore @@ -39,4 +39,5 @@ GoogleService-Info.plist scripts/doppler_variables.sh .env -env.json \ No newline at end of file +env.json +.vercel From c5dce753297fa2d375a44714bce056d35193a3fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Baumruck?= Date: Thu, 14 Mar 2024 11:29:47 +0100 Subject: [PATCH 08/10] fix landing theme bg and logo version --- .vscode/settings.json | 2 +- src/components/LandingHeader.tsx | 4 +++- src/screens/LandingScreen.tsx | 5 +++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 70ffdf77..285ca741 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { - "cSpell.words": ["icomoon", "notificated", "postsecondary"], + "cSpell.words": ["Binar", "icomoon", "notificated", "postsecondary"], "todohighlight.keywords": [ { "text": "CONFIG:", diff --git a/src/components/LandingHeader.tsx b/src/components/LandingHeader.tsx index 0395ed21..f001e4ea 100644 --- a/src/components/LandingHeader.tsx +++ b/src/components/LandingHeader.tsx @@ -8,6 +8,7 @@ import { useRouter } from 'expo-router' import { useAtomValue } from 'jotai' import { Image, StyleSheet, Platform, View } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' + export function LandingHeader() { const { colorScheme } = useColorScheme() const { top } = useSafeAreaInsets() @@ -20,6 +21,7 @@ export function LandingHeader() { const navigateToSignUp = useCallback(() => push('/sign-up'), [push]) const height = 60 + top + return ( )} diff --git a/src/screens/LandingScreen.tsx b/src/screens/LandingScreen.tsx index ab343deb..2c13bcd4 100644 --- a/src/screens/LandingScreen.tsx +++ b/src/screens/LandingScreen.tsx @@ -1,3 +1,4 @@ +import { KeyboardAwareScrollView } from '@baca/components' import { LandingHeader } from '@baca/components/LandingHeader' import { darkLogo, lightLogo } from '@baca/constants' import { useColorScheme } from '@baca/contexts' @@ -24,7 +25,7 @@ export const LandingScreen = () => { }, []) return ( - <> +
{ {t('landing_screen.go_to_blog')}
- +
) } From 2f401eb2aab938268f1e55bd459920c2023bb529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Baumruck?= Date: Thu, 14 Mar 2024 12:34:44 +0100 Subject: [PATCH 09/10] correct some typos --- .vscode/settings.json | 2 +- README.md | 22 +++++++++--------- app.json | 4 ++-- docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx | 10 ++++---- docs/docs/deploy/DEPLOY_INTRO.md | 2 +- docs/docs/tutorials/BACKEND-CONNECTION.md | 2 +- docs/docs/tutorials/DOPPLER_CONFIG.mdx | 8 +++---- docs/docs/tutorials/ICONS.md | 4 ++-- docs/docs/tutorials/JOTAI.md | 2 +- docs/docs/tutorials/NOTIFICATIONS_SETUP.md | 6 ++--- ...irnoments.png => doppler_environments.png} | Bin 11 files changed, 31 insertions(+), 31 deletions(-) rename docs/static/img/{doppler_envirnoments.png => doppler_environments.png} (100%) diff --git a/.vscode/settings.json b/.vscode/settings.json index 285ca741..6030d7fd 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { - "cSpell.words": ["Binar", "icomoon", "notificated", "postsecondary"], + "cSpell.words": ["Binar", "diawi", "icomoon", "mobileprovision", "notificated", "postsecondary"], "todohighlight.keywords": [ { "text": "CONFIG:", diff --git a/README.md b/README.md index 94fadbe3..43e7d9a0 100644 --- a/README.md +++ b/README.md @@ -20,18 +20,18 @@ This is a template to be used with react native and expo. It includes all the ne Check out our [documentation page](https://baca-rn-docs.vercel.app/docs/bootstrap/intro), it contains: -- Bootstraping project - tutorial how to easy setup from scrath +- Bootstrapping project - tutorial how to easy setup from scratch - Deploying app -- Tutorials - - How to manage environment variables - - Use jotai as state management tool +- Tutorials how to: + - manage environment variables + - use jotai as state management tool ## Why to use? We know there are a lot of project starters for react native, but we have some good features: - Fully works with **EXPO GO** - - Good for start the project and later you can switch to expo-dev-client + - Good for start of the project, later you can switch to expo-dev-client - Fully works on **WEB** - If you want to develop apps both on web and mobile this starter is good choice for you - **Code generators** (create new screen / create new component) @@ -54,7 +54,7 @@ It's great for production project, but if you want to just test it, you can foll - `npx create-expo-app --template=@binarapps/expo-ts-template name_of_your_app` - `cd name_of_your_app` -- `yarn bootstrap` - the cli will ask you some questinos about your app (you can fill all this data later) +- `yarn bootstrap` - the cli will ask you some questions about your app (you can fill all this data later) ## What's inside? @@ -118,15 +118,15 @@ It's great for production project, but if you want to just test it, you can foll - write docs (app deployment, app setup and more) - in progress - tutorial on how to use features - navigation - - deeplinking + - deepLinking - auth flows - components - react query - api calls - state management tool -- Add desings (figma) and redesing whole app +- Add designs (figma) and redesign whole app - Updating expo versions (in future) -- Deploy app to appstore and playstore +- Deploy app to App Store and Play Store - Create sample app and document the process of deployment - Improve mock server logic - add commit lint @@ -176,7 +176,7 @@ Environment variables instruction: 1. Create empty file `scripts/doppler_variables.sh` and add this script to new created file. -- run `yarn prepare:env_file` - this will copy template and plase it in `scripts/doppler_variables.sh` +- run `yarn prepare:env_file` - this will copy template and place it in `scripts/doppler_variables.sh` 2. Add correct values to variables (ask one of the developers for that), example: @@ -221,7 +221,7 @@ If you have any feedback, please reach out to me at mateusz.rostkowsky995@gmail. ### Outdated (not maintained anymore) -- https://github.com/kacgrzes/expo-typescript-template (our repo is fork of this one - we keep maintaing this) +- https://github.com/kacgrzes/expo-typescript-template (our repo is fork of this one - we keep maintaining this) - https://github.com/codingki/react-native-expo-template - https://github.com/flatlogic/react-native-starter - https://github.com/mcnamee/react-native-expo-starter-kit diff --git a/app.json b/app.json index c39ed0e6..2ce312f1 100644 --- a/app.json +++ b/app.json @@ -1,7 +1,5 @@ { "expo": { - "owner": "binarapps", - "slug": "expo-typescript-template", "android": { "jsEngine": "hermes", "versionCode": 10, @@ -17,6 +15,8 @@ }, "name": "Template", "orientation": "portrait", + "owner": "binarapps", + "slug": "expo-typescript-template", "splash": { "backgroundColor": "#ffffff", "image": "./assets/splash.png", diff --git a/docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx b/docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx index b7133f64..2360458b 100644 --- a/docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx +++ b/docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx @@ -23,13 +23,13 @@ Bootstrap project structure, that is needed to start development ### 1. Setup repository ```bash -git clone git@github.com:binarapps/baca-react-native-template.git -cd expo-ts-template +git clone git@github.com:binarapps/baca-react-native-template.git name_of_your_app +cd name_of_your_app ``` -> Removing git history **(not recomended)** +> Removing git history **(not recommended)** > -> - do it only if you don't want to keep history of commits - maybe client doesnt want this +> - do it only if you don't want to keep history of commits - maybe client doesn't want this > - when you will get rid of git history it could be hard to apply changes made in the starter file > > ```bash @@ -39,7 +39,7 @@ cd expo-ts-template > ```
-1. Init using this command (beaware that sometimes this template can't be updated on npm, in that case, clone this repository and reinitialize repozitory for yourself - check third type of setup) +1. Init using this command (be aware that sometimes this template can't be updated on npm, in that case, clone this repository and reinitialize repository for yourself - check third type of setup) ```bash npx create-expo-app --template=@binarapps/baca-react-native-template name_of_your_app diff --git a/docs/docs/deploy/DEPLOY_INTRO.md b/docs/docs/deploy/DEPLOY_INTRO.md index fd93fed0..d841faf3 100644 --- a/docs/docs/deploy/DEPLOY_INTRO.md +++ b/docs/docs/deploy/DEPLOY_INTRO.md @@ -141,7 +141,7 @@ description: Intro to app deployment
    -
  • Can't test native modules that are not supported by expo go like: firebase analytics, onesignal
  • +
  • Can't test native modules that are not supported by expo go like: Firebase Analytics, OneSignal
  • It's little different than native app, will need additional tests after testing in expo go
diff --git a/docs/docs/tutorials/BACKEND-CONNECTION.md b/docs/docs/tutorials/BACKEND-CONNECTION.md index f884d1da..229bf532 100644 --- a/docs/docs/tutorials/BACKEND-CONNECTION.md +++ b/docs/docs/tutorials/BACKEND-CONNECTION.md @@ -38,7 +38,7 @@ This template uses this packages to keep connection with backend: - override-header - additionally turning off `no-explicit-any` eslint rule - mutator - where is api instance placed - afterAllFilesWrite - what should happened when the script will run - we are running liter with fix flag -- Orval is very flexible and you can do a lot modifications, please check (their docs)[https://orval.dev/overview] for reference +- Orval is very flexible and you can do a lot modifications, please check [their docs](https://orval.dev/overview) for reference 2. How to do changes to axios instance diff --git a/docs/docs/tutorials/DOPPLER_CONFIG.mdx b/docs/docs/tutorials/DOPPLER_CONFIG.mdx index 8492e801..e14b5714 100644 --- a/docs/docs/tutorials/DOPPLER_CONFIG.mdx +++ b/docs/docs/tutorials/DOPPLER_CONFIG.mdx @@ -18,7 +18,7 @@ import Details from '@site/src/components/Details' ## Why you need it? -Thanks to doppler you will be able to autoamtically mange your environment varialbes. +Thanks to doppler you will be able to automatically mange your environment variables. This starter have fully integrated doppler configuration, you just need to do few easy steps @@ -69,7 +69,7 @@ a. Enter the projects tab, and select a newly created project b. Each project consist of three predefined environments - dev, stg and prd. \*\* Click each of them to enter environment variable page. -![Select environment](../../static/img/doppler_envirnoments.png) +![Select environment](../../static/img/doppler_environments.png) c. To add a new environment variable click on Add first secret ![Add first secret](../../static/img/doppler_secret_add.png) @@ -115,7 +115,7 @@ f. To be able to use environment variables for different environments (qa/stagin
-
+
1. Create empty file `scripts/doppler_variables.sh` and add this script to new created file. @@ -150,7 +150,7 @@ CONGRATULATION !! 🥳🥳 You have configured the Doppler tool for your project --- -Additionaly you can start the expo server: +Additionally you can start the expo server: - this will start server and generate env variables diff --git a/docs/docs/tutorials/ICONS.md b/docs/docs/tutorials/ICONS.md index 6cb871b8..1b1e326f 100644 --- a/docs/docs/tutorials/ICONS.md +++ b/docs/docs/tutorials/ICONS.md @@ -35,8 +35,8 @@ It is added to the app as a font generated by [icomoon app](https://icomoon.io/a 7. Download font - icomoon app 8. Replace old files with downloaded ones - - ./selection.json => assets/icomoon/selection.json - - ./fonts/icomoon.ttf => assets/icomoon/icomoon.ttf + - `./selection.json` => `assets/icomoon/selection.json` + - `./fonts/icomoon.ttf` => `assets/icomoon/icomoon.ttf` 9. Generate new types for icons diff --git a/docs/docs/tutorials/JOTAI.md b/docs/docs/tutorials/JOTAI.md index d8d401ed..8b78078c 100644 --- a/docs/docs/tutorials/JOTAI.md +++ b/docs/docs/tutorials/JOTAI.md @@ -13,6 +13,6 @@ description: Doppler - automatically manage environment variables ## Jotai -This starter comes with jotai state management tool. Please check documentation on how it work in deatils: +This starter comes with jotai state management tool. Please check documentation on how it work in details: - https://jotai.org/docs/introduction diff --git a/docs/docs/tutorials/NOTIFICATIONS_SETUP.md b/docs/docs/tutorials/NOTIFICATIONS_SETUP.md index db152d7f..286e4a07 100644 --- a/docs/docs/tutorials/NOTIFICATIONS_SETUP.md +++ b/docs/docs/tutorials/NOTIFICATIONS_SETUP.md @@ -1,6 +1,6 @@ --- id: expo-notifications -slug: /expo-notofications +slug: /expo-notifications title: Expo notifications sidebar_position: 4 tags: @@ -50,10 +50,10 @@ Expo notifications are already preconfigured in this template. However, you stil "expo": { ..., "owner": "@binarapps", - "slug": "expo-typescript-template", + "slug": "baca-react-native-template", ..., "extra": { - "experienceid": "@binarapps/expo-typescript-template" + "experienceId": "@binarapps/baca-react-native-template" } } } diff --git a/docs/static/img/doppler_envirnoments.png b/docs/static/img/doppler_environments.png similarity index 100% rename from docs/static/img/doppler_envirnoments.png rename to docs/static/img/doppler_environments.png From 3014d6ab3e2746a232988990900caf8231bb0a86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Baumruck?= Date: Fri, 15 Mar 2024 09:48:39 +0100 Subject: [PATCH 10/10] add small fix to docs --- docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx | 2 +- docs/docs/tutorials/NOTIFICATIONS_SETUP.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx b/docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx index 2360458b..29546e0d 100644 --- a/docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx +++ b/docs/docs/bootstrap/BOOTSTRAP_INTRO.mdx @@ -123,7 +123,7 @@ In `app.json` file please insert the following: { "expo": { "owner": "your_organization_name", - "slug": "example-app-name" + "slug": "your_app_name" } } ``` diff --git a/docs/docs/tutorials/NOTIFICATIONS_SETUP.md b/docs/docs/tutorials/NOTIFICATIONS_SETUP.md index 286e4a07..12f5e73d 100644 --- a/docs/docs/tutorials/NOTIFICATIONS_SETUP.md +++ b/docs/docs/tutorials/NOTIFICATIONS_SETUP.md @@ -49,11 +49,11 @@ Expo notifications are already preconfigured in this template. However, you stil { "expo": { ..., - "owner": "@binarapps", - "slug": "baca-react-native-template", + "owner": "your_owner_name", + "slug": "your_app_slug", ..., "extra": { - "experienceId": "@binarapps/baca-react-native-template" + "experienceId": "your_owner_name/your_app_slug" } } }