-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjuno.config.ts
More file actions
45 lines (44 loc) · 912 Bytes
/
juno.config.ts
File metadata and controls
45 lines (44 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import {defineConfig} from '@junobuild/config';
export default defineConfig({
satellite: {
ids: {
development: 'jx5yt-yyaaa-aaaal-abzbq-cai',
production: 'fmkjf-bqaaa-aaaal-acpza-cai'
},
source: 'out',
storage: {
headers: [
{
source: '**/templates/**/*',
headers: [['Content-Type', 'application/octet-stream']]
}
]
},
encoding: [['**/templates/*.tar.gz', 'identity']],
precompress: false,
collections: {
datastore: [
{
collection: 'notes',
read: 'managed',
write: 'managed',
memory: 'stable'
}
],
storage: [
{
collection: 'images',
read: 'managed',
write: 'managed',
memory: 'stable'
}
]
}
},
emulator: {
runner: {
type: 'docker'
},
satellite: {}
}
});