Last change
on this file since 322 was
322,
checked in by hendrikvanantwerpen, 13 years ago
|
Added Play! framework and application with Jena dependency. Working on
the basic things now (login/register), after that start implementing
our data model.
|
File size:
5.0 KB
|
Line | |
---|
1 | |
---|
2 | # Users |
---|
3 | |
---|
4 | users: |
---|
5 | |
---|
6 | - !!models.User |
---|
7 | email: guillaume@sample.com |
---|
8 | name: Guillaume Bort |
---|
9 | password: secret |
---|
10 | |
---|
11 | - !!models.User |
---|
12 | email: maxime@sample.com |
---|
13 | name: Maxime Dantec |
---|
14 | password: secret |
---|
15 | |
---|
16 | - !!models.User |
---|
17 | email: sadek@sample.com |
---|
18 | name: Sadek Drobi |
---|
19 | password: secret |
---|
20 | |
---|
21 | - !!models.User |
---|
22 | email: erwan@sample.com |
---|
23 | name: Erwan Loisant |
---|
24 | password: secret |
---|
25 | |
---|
26 | # Projects |
---|
27 | |
---|
28 | projects: |
---|
29 | |
---|
30 | - !!models.Project |
---|
31 | id: 1 |
---|
32 | name: Play 2.0 |
---|
33 | folder: Play framework |
---|
34 | members: |
---|
35 | - !!models.User |
---|
36 | email: guillaume@sample.com |
---|
37 | - !!models.User |
---|
38 | email: maxime@sample.com |
---|
39 | - !!models.User |
---|
40 | email: sadek@sample.com |
---|
41 | - !!models.User |
---|
42 | email: erwan@sample.com |
---|
43 | |
---|
44 | - !!models.Project |
---|
45 | id: 2 |
---|
46 | name: Play 1.2.4 |
---|
47 | folder: Play framework |
---|
48 | members: |
---|
49 | - !!models.User |
---|
50 | email: guillaume@sample.com |
---|
51 | - !!models.User |
---|
52 | email: erwan@sample.com |
---|
53 | |
---|
54 | - !!models.Project |
---|
55 | id: 3 |
---|
56 | name: Website |
---|
57 | folder: Play framework |
---|
58 | members: |
---|
59 | - !!models.User |
---|
60 | email: guillaume@sample.com |
---|
61 | - !!models.User |
---|
62 | email: maxime@sample.com |
---|
63 | |
---|
64 | - !!models.Project |
---|
65 | id: 4 |
---|
66 | name: Secret project |
---|
67 | folder: Zenexity |
---|
68 | members: |
---|
69 | - !!models.User |
---|
70 | email: guillaume@sample.com |
---|
71 | - !!models.User |
---|
72 | email: maxime@sample.com |
---|
73 | - !!models.User |
---|
74 | email: sadek@sample.com |
---|
75 | - !!models.User |
---|
76 | email: erwan@sample.com |
---|
77 | |
---|
78 | - !!models.Project |
---|
79 | id: 5 |
---|
80 | name: Playmate |
---|
81 | folder: Zenexity |
---|
82 | members: |
---|
83 | - !!models.User |
---|
84 | email: maxime@sample.com |
---|
85 | |
---|
86 | - !!models.Project |
---|
87 | id: 6 |
---|
88 | name: Things to do |
---|
89 | folder: Personal |
---|
90 | members: |
---|
91 | - !!models.User |
---|
92 | email: guillaume@sample.com |
---|
93 | |
---|
94 | - !!models.Project |
---|
95 | id: 7 |
---|
96 | name: Play samples |
---|
97 | folder: Zenexity |
---|
98 | members: |
---|
99 | - !!models.User |
---|
100 | email: guillaume@sample.com |
---|
101 | - !!models.User |
---|
102 | email: maxime@sample.com |
---|
103 | |
---|
104 | - !!models.Project |
---|
105 | id: 8 |
---|
106 | name: Private |
---|
107 | folder: Personal |
---|
108 | members: |
---|
109 | - !!models.User |
---|
110 | email: guillaume@sample.com |
---|
111 | |
---|
112 | - !!models.Project |
---|
113 | id: 9 |
---|
114 | name: Private |
---|
115 | folder: Personal |
---|
116 | members: |
---|
117 | - !!models.User |
---|
118 | email: erwan@sample.com |
---|
119 | |
---|
120 | - !!models.Project |
---|
121 | id: 10 |
---|
122 | name: Private |
---|
123 | folder: Personal |
---|
124 | members: |
---|
125 | - !!models.User |
---|
126 | email: sadek@sample.com |
---|
127 | |
---|
128 | - !!models.Project |
---|
129 | id: 11 |
---|
130 | name: Private |
---|
131 | folder: Personal |
---|
132 | members: |
---|
133 | - !!models.User |
---|
134 | email: maxime@sample.com |
---|
135 | |
---|
136 | # Task |
---|
137 | |
---|
138 | tasks: |
---|
139 | |
---|
140 | - !!models.Task |
---|
141 | title: Fix the documentation |
---|
142 | done: false |
---|
143 | folder: Todo |
---|
144 | project: !!models.Project |
---|
145 | id: 1 |
---|
146 | assignedTo: !!models.User |
---|
147 | email: guillaume@sample.com |
---|
148 | |
---|
149 | - !!models.Task |
---|
150 | title: Prepare the beta release |
---|
151 | done: false |
---|
152 | folder: Urgent |
---|
153 | dueDate: 2011-11-15 |
---|
154 | project: !!models.Project |
---|
155 | id: 1 |
---|
156 | assignedTo: !!models.User |
---|
157 | email: guillaume@sample.com |
---|
158 | |
---|
159 | - !!models.Task |
---|
160 | title: Buy some milk |
---|
161 | done: false |
---|
162 | folder: Todo |
---|
163 | project: !!models.Project |
---|
164 | id: 9 |
---|
165 | |
---|
166 | - !!models.Task |
---|
167 | title: Check 1.2.4-RC2 |
---|
168 | done: false |
---|
169 | folder: Todo |
---|
170 | dueDate: 2011-11-18 |
---|
171 | project: !!models.Project |
---|
172 | id: 2 |
---|
173 | assignedTo: !!models.User |
---|
174 | email: guillaume@sample.com |
---|
175 | |
---|
176 | - !!models.Task |
---|
177 | title: Finish zentask integration |
---|
178 | done: true |
---|
179 | folder: Todo |
---|
180 | dueDate: 2011-11-15 |
---|
181 | project: !!models.Project |
---|
182 | id: 7 |
---|
183 | assignedTo: !!models.User |
---|
184 | email: maxime@sample.com |
---|
185 | |
---|
186 | - !!models.Task |
---|
187 | title: Release the secret project |
---|
188 | done: false |
---|
189 | folder: Todo |
---|
190 | dueDate: 2012-01-01 |
---|
191 | project: !!models.Project |
---|
192 | id: 4 |
---|
193 | assignedTo: !!models.User |
---|
194 | email: sadek@sample.com |
---|
195 | |
---|
Note: See
TracBrowser
for help on using the repository browser.