File tree 2 files changed +21
-9
lines changed
2 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -31,26 +31,32 @@ export ACCESS_TOKEN_GITHUB=""
31
31
32
32
### Dev
33
33
34
- To load the environment variables from ` scripts/.env.sh ` , make the environment
35
- variable modules, and serve the Ruck app:
34
+ To load the environment variables from ` scripts/.env.sh ` , make the public
35
+ environment variable modules, and serve the Ruck app:
36
36
37
37
``` sh
38
38
./scripts/dev.sh
39
39
```
40
40
41
41
### Make public environment variable modules
42
42
43
- To make the public environment variable modules (requires environment
44
- variables):
43
+ > [ !IMPORTANT]
44
+ >
45
+ > Requires environment variables.
46
+
47
+ To make the public environment variable modules:
45
48
46
49
``` sh
47
50
./scripts/makeEnvModules.sh
48
51
```
49
52
50
53
### Serve
51
54
52
- To serve the Ruck app for either development or production (requires environment
53
- variables):
55
+ > [ !IMPORTANT]
56
+ >
57
+ > Requires environment variables.
58
+
59
+ To serve the Ruck app for either development or production:
54
60
55
61
``` sh
56
62
./scripts/serve.sh
@@ -74,6 +80,12 @@ deno lint
74
80
75
81
### Type check
76
82
83
+ > [ !IMPORTANT]
84
+ >
85
+ > Beforehand, run the
86
+ > [ make public environment variable modules] ( #make-public-environment-variable-modules )
87
+ > script.
88
+
77
89
To type check every JavaScript module in the project:
78
90
79
91
``` sh
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- # Loads the environment variables, makes the environment variable modules, and
3
- # serves the Ruck app.
2
+ # Loads the environment variables, makes the public environment variable
3
+ # modules, and serves the Ruck app.
4
4
5
5
# Load the environment variables.
6
6
. scripts/.env.sh &&
7
7
8
- # Make the environment variable modules.
8
+ # Make the public environment variable modules.
9
9
./scripts/makeEnvModules.sh &&
10
10
11
11
# Serve the Ruck app.
You can’t perform that action at this time.
0 commit comments