-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatlas.hcl
51 lines (39 loc) · 1.71 KB
/
atlas.hcl
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
46
47
48
49
50
51
# **************************************************************************************
// @author Michael Roberts <michael@observerly.com>
// @package @observerly/skysolve
// @license Copyright © 2021-2025 observerly
# **************************************************************************************
// Define an environment named "512", which corresponds to HEALPix NSides=512.
env "512" {
// Declare where the schema definition resides.
// Also supported: ["file://multi.hcl", "file://schema.hcl"].
src = "file://indexes/schema.hcl"
// Define the URL of the database which is managed
// in this environment.
url = "sqlite://indexes/512/stars.db.sqlite"
// Define the URL of the Dev Database for this environment
// See: https://atlasgo.io/concepts/dev-database
dev = "sqlite://indexes/512/stars.db.sqlite"
migration {
// URL where the migration directory resides.
dir = "file://migrations"
}
}
# **************************************************************************************
// Define an environment named "1024", which corresponds to HEALPix NSides=1024.
env "1024" {
// Declare where the schema definition resides.
// Also supported: ["file://multi.hcl", "file://schema.hcl"].
src = "file://indexes/schema.hcl"
// Define the URL of the database which is managed
// in this environment.
url = "sqlite://indexes/1024/stars.db.sqlite"
// Define the URL of the Dev Database for this environment
// See: https://atlasgo.io/concepts/dev-database
dev = "sqlite://indexes/1024/stars.db.sqlite"
migration {
// URL where the migration directory resides.
dir = "file://migrations"
}
}
# **************************************************************************************