Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Application modulaire fonctionnelle !

Emmanuel ROY authored on 12/08/2019 15:10:25
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,35 +0,0 @@
1
-# This is a TOML document.
2
-
3
-title = "TOML Example"
4
-
5
-flower = 'sakura'
6
-
7
-[owner]
8
-name = "Tom Preston-Werner"
9
-dob = 1979-05-27T07:32:00-08:00 # First class dates
10
-
11
-[database]
12
-server = "192.168.1.1"
13
-ports = [ 8001, 8001, 8002 ]
14
-connection_max = 5000
15
-enabled = true
16
-
17
-[servers]
18
-
19
-  # Indentation (tabs and/or spaces) is allowed but not required
20
-  [servers.alpha]
21
-  ip = "10.0.0.1"
22
-  dc = "eqdc10"
23
-
24
-  [servers.beta]
25
-  ip = "10.0.0.2"
26
-  dc = "eqdc10"
27
-
28
-[clients]
29
-data = [ ["gamma", "delta"], [1, 2] ]
30
-
31
-# Line breaks are OK when inside arrays
32
-hosts = [
33
-  "alpha",
34
-  "omega"
35
-]
Browse code

initial commit

Emmanuel ROY authored on 09/08/2019 08:39:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,35 @@
1
+# This is a TOML document.
2
+
3
+title = "TOML Example"
4
+
5
+flower = 'sakura'
6
+
7
+[owner]
8
+name = "Tom Preston-Werner"
9
+dob = 1979-05-27T07:32:00-08:00 # First class dates
10
+
11
+[database]
12
+server = "192.168.1.1"
13
+ports = [ 8001, 8001, 8002 ]
14
+connection_max = 5000
15
+enabled = true
16
+
17
+[servers]
18
+
19
+  # Indentation (tabs and/or spaces) is allowed but not required
20
+  [servers.alpha]
21
+  ip = "10.0.0.1"
22
+  dc = "eqdc10"
23
+
24
+  [servers.beta]
25
+  ip = "10.0.0.2"
26
+  dc = "eqdc10"
27
+
28
+[clients]
29
+data = [ ["gamma", "delta"], [1, 2] ]
30
+
31
+# Line breaks are OK when inside arrays
32
+hosts = [
33
+  "alpha",
34
+  "omega"
35
+]