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
Copy file name to clipboardExpand all lines: README.md
+32-24Lines changed: 32 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,33 +1,38 @@
1
1

2
2
3
-
# From Zero to WOW in 5 minutes
4
-
This project aims to bring unprecedented user experience to developers by __simplifying__ the deployment of applications using an [Autonomous Database](#why-oracle-autonomous-database-for-developers).
3
+
# From Zero to WOW in 5 minutes
4
+

5
+
- Generates the source code of a pre-configured [REACT](https://reactjs.org/) frontend
6
+
- Provisions an autonomous backend ([Always Free autonomous database](#why-oracle-autonomous-database-for-developers) + REST Data Services)
7
+
- (optional) Loads your JSON data into your collection(s)
@@ -38,20 +43,23 @@ The DRAGON Stack is driven by the command line arguments and a configuration fil
38
43
### CLI arguments
39
44
40
45
```
41
-
./dragon-linux-x86_64-2.0.0 -help
42
-
DRAGON Stack manager v2.0.0
46
+
./dragon-linux-x86_64-2.0.1 -help
47
+
DRAGON Stack manager v2.0.1
43
48
44
49
> Command line parameters ................................................... ok
45
50
Usage:
46
51
-config-template display a configuration file template
47
52
-profile <profile name> choose the given profile name from dragon.config (instead of DEFAULT)
48
-
-db <database name> denotes the database name to create
49
-
-load load corresponding data into collections
53
+
-db <database name> denotes the database name to create or destroy
54
+
-load loads JSON data corresponding to collections (default: no data loaded)
55
+
. use with configuration parameters database_collections and data_path
56
+
. loading JSON data can be done during and/or after database provisioning
57
+
. JSON file names must match <collection name>[_[0-9]+].json
50
58
-create-react-app [name] create a React frontend (default project name is "frontend")
51
59
-destroy ask to destroy the database
52
60
```
53
61
54
-
If you wish to create JSON collections during the provisioning process, you may use the configuration file parameter __database_collections__ (see hereunder). If you also wish to load existing data into these collections, you may put your JSON documents in files having the same name as the collection name plus the .json extension. These files must be of JSON dump format with exactly one JSON document per line. No array, no comma separating the documents but carriage returns! __Your files will be loaded only if you ask for it using the -load CLI argument__.
62
+
If you need to create JSON collections during the provisioning process, you may use the configuration file parameter __database_collections__ (see hereunder). If you also need to load existing JSON data into these collections, you may put your JSON documents in files having the same name as the collection name plus the .json extension. These files must be of JSON dump format with exactly one JSON document per line. No array, no comma separating the documents but carriage returns! __Your files will be loaded only if you ask for it using the -load CLI argument__.
55
63
56
64
### Configuration file
57
65
@@ -127,37 +135,37 @@ Example from OCI Cloud Shell (Linux):
127
135
128
136
Linux and OCI Cloud Shell:
129
137
```
130
-
$ ./dragon-linux-x86_64-2.0.0
138
+
$ ./dragon-linux-x86_64-2.0.1
131
139
```
132
140
133
141
To load data as well as provisioning (Linux and OCI Cloud Shell):
134
142
```
135
-
$ ./dragon-linux-x86_64-2.0.0 -load
143
+
$ ./dragon-linux-x86_64-2.0.1 -load
136
144
```
137
145
138
146
To load data as well as provisioning and finally create a React application (Linux and OCI Cloud Shell):
0 commit comments