You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 20, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: docs/guides/dart/flutter.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ code word_generator
78
78
79
79
Let's start by building out the backend. This will be an API with a route dedicated to getting a list of all the favorites and a route to toggle a favorite on or off. These favorites will be stored in a [key value store](/keyvalue). To create a Nitric project add the `nitric.yaml` to the Flutter template project.
80
80
81
-
```yaml{{ label: "nitric.yaml" }}
81
+
```yamltitle:nitric.yaml
82
82
name: word_generator
83
83
services:
84
84
- match: lib/services/*.dart
@@ -1414,7 +1414,7 @@ nitric stack new dev aws
1414
1414
1415
1415
You'll then need to edit the `nitric.dev.yaml` file to add a region.
Copy file name to clipboardExpand all lines: docs/guides/nodejs/byo-database.mdx
+11-13Lines changed: 11 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,15 @@ languages:
6
6
- typescript
7
7
- javascript
8
8
published_at: 2022-10-13
9
-
updated_at: 2024-06-14
9
+
updated_at: 2024-12-30
10
10
---
11
11
12
12
# BYO Database
13
13
14
-
Nitric currently has out of the box **preview** support for [SQL databases](/sql) with AWS, however Nitric allows you to use whatever tooling and ORMs you prefer for directly interfacing with your database. Our recommendation for local development is to set up a container that runs alongside your Nitric processes. For a production environment, you can use any of the database services for your preferred cloud:
14
+
Nitric currently has out of the box **preview** support for [PostgreSQL databases](/sql), however Nitric allows you to use whatever tooling and ORMs you prefer for directly interfacing with your database. If you want to use a database that isn't managed by Nitric, we have the following recommendations:
15
15
16
-
<Note>
17
-
You can track the support for relational databases
0 commit comments