-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add links and text to the template and tutorial #161
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,11 +1,23 @@ | ||||||
# Realm Kotlin SDK Template App | ||||||
|
||||||
A todo list application built with the [Realm Kotlin SDK](https://www.mongodb.com/docs/realm/sdk/kotlin/) and [Atlas Device Sync](https://www.mongodb.com/docs/atlas/app-services/sync/). | ||||||
|
||||||
You can follow along with the [Kotlin Tutorial](https://www.mongodb.com/docs/atlas/app-services/tutorial/kotlin/) to see how to build, modify, and | ||||||
run this template app. | ||||||
|
||||||
## Configuration | ||||||
|
||||||
Ensure `app/src/main/res/values/atlasConfig.xml` exists and contains the following properties: | ||||||
For this template app to work, you must ensure that `kotlin-sdk/app/src/main/res/values/atlasConfig.xml` exists and contains the following properties: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same note as above re: the directory structure.
Suggested change
|
||||||
|
||||||
- **appId:** your Atlas App Services App ID. | ||||||
- **baseUrl:** the App Services backend URL. This should be https://realm.mongodb.com in most cases. | ||||||
|
||||||
### Using the Atlas App Services UI | ||||||
|
||||||
- **realm_app_id:** your Atlas App Services App ID. | ||||||
- **realm_base_url** the App Services backend URL. This should be https://realm.mongodb.com in most cases. | ||||||
The easiest way to use this template app is to log on to [Atlas App Services](https://realm.mongodb.com/) and click the **Create App From Template** button. Choose | ||||||
**Real Time Sync**, and then follow the prompts. While the backend app is being | ||||||
created, you can download this Flutter template app pre-configured for your new | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
app. | ||||||
|
||||||
### Cloning from GitHub | ||||||
|
||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,5 +1,10 @@ | ||||||
# Maui C# Template App | ||||||
|
||||||
A todo list application built with the [.NET Flutter SDK](https://www.mongodb.com/docs/realm/sdk/dotnet/) and [Atlas Device Sync](https://www.mongodb.com/docs/atlas/app-services/sync/). | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
You can follow along with the [Flutter Tutorial](https://www.mongodb.com/docs/atlas/app-services/tutorial/dotnet/) to see how to build, modify, and | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
run this template app. | ||||||
|
||||||
## Configuration | ||||||
|
||||||
The App ID is located in `atlasConfig.json`: | ||||||
|
@@ -11,9 +16,14 @@ The App ID is located in `atlasConfig.json`: | |||||
} | ||||||
``` | ||||||
|
||||||
Change the value of `appId` value with your App Services App ID. For help | ||||||
finding this ID, refer to: | ||||||
[Find Your Project or App Id](https://www.mongodb.com/docs/atlas/app-services/reference/find-your-project-or-app-id/) | ||||||
You will need to change the value of `appId` value with your App Services App ID. For help finding this ID, refer to: [Find Your Project or App Id](https://www.mongodb.com/docs/atlas/app-services/reference/find-your-project-or-app-id/) | ||||||
|
||||||
### Using the Atlas App Services UI | ||||||
|
||||||
The easiest way to use this template app is to log on to [Atlas App Services](https://realm.mongodb.com/) and click the **Create App From Template** button. Choose | ||||||
**Real Time Sync**, and then follow the prompts. While the backend app is being | ||||||
created, you can download this Flutter template app pre-configured for your new | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
app. | ||||||
|
||||||
### Cloning from GitHub | ||||||
|
||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,5 +1,10 @@ | ||||||
# React Native Template App | ||||||
|
||||||
A todo list application built with the [React Native SDK](https://www.mongodb.com/docs/realm/sdk/react-native/) and [Atlas Device Sync](https://www.mongodb.com/docs/atlas/app-services/sync/). | ||||||
|
||||||
You can follow along with the [React Native Tutorial](https://www.mongodb.com/docs/atlas/app-services/tutorial/react-native/) to see how to build, modify, and | ||||||
run this template app. | ||||||
|
||||||
## Prerequisites | ||||||
|
||||||
- Make sure your system is setup to run a React Native application by following the [setup guide](https://reactnative.dev/docs/environment-setup) | ||||||
|
@@ -19,6 +24,13 @@ Ensure `atlasConfig.json` exists and contains the following properties: | |||||
- **appId:** your Atlas App Services App ID. | ||||||
- **baseUrl:** the App Services backend URL. This should be https://realm.mongodb.com in most cases. | ||||||
|
||||||
### Using the Atlas App Services UI | ||||||
|
||||||
The easiest way to use this template app is to log on to [Atlas App Services](https://realm.mongodb.com/) and click the **Create App From Template** button. Choose | ||||||
**Real Time Sync**, and then follow the prompts. While the backend app is being | ||||||
created, you can download this Flutter template app pre-configured for your new | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
app. | ||||||
|
||||||
### Cloning from GitHub | ||||||
|
||||||
If you have cloned this repository from the GitHub | ||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,14 +1,26 @@ | ||||||
# SwiftUI Template App | ||||||
|
||||||
A todo list application built with the [SwiftUI SDK](https://www.mongodb.com/docs/realm/sdk/swift/) and [Atlas Device Sync](https://www.mongodb.com/docs/atlas/app-services/sync/). | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
You can follow along with the [SwiftUI Tutorial](https://www.mongodb.com/docs/atlas/app-services/tutorial/swiftui/) to see how to build, modify, and | ||||||
run this template app. | ||||||
|
||||||
This project uses Swift Package Manager (SPM) to load dependencies. | ||||||
|
||||||
## Configuration | ||||||
|
||||||
Ensure `App/atlasConfig.plist` exists and contains the following properties: | ||||||
For this template app to work, you must ensure that `App/atlasConfig.plist` exists and contains the following properties: | ||||||
|
||||||
- **appId:** your Atlas App Services App ID. | ||||||
- **baseUrl:** the App Services backend URL. This should be https://realm.mongodb.com in most cases. | ||||||
|
||||||
### Using the Atlas App Services UI | ||||||
|
||||||
The easiest way to use this template app is to log on to [Atlas App Services](https://realm.mongodb.com/) and click the **Create App From Template** button. Choose | ||||||
**Real Time Sync**, and then follow the prompts. While the backend app is being | ||||||
created, you can download this Flutter template app pre-configured for your new | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
app. | ||||||
|
||||||
### Cloning from GitHub | ||||||
|
||||||
If you have cloned this repository from the GitHub | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a nitpick for some of these, but presumably the people who are consuming this README will be doing so either from the artifact repo (https://github.com/mongodb/template-app-dart-flutter-todo) or as a download from the Atlas UI where
flutter_todo
is not part of the directory structure. So I think when we're providing the path, we should do it relative to where the README is located and not make any assumptions about the enclosing directory structure.(Also, if you take this suggestion, we should change it in ln 39 down below, too, I just can't leave a comment there since we're not modifying it here.)