forked from posko/posko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
40 lines (39 loc) · 938 Bytes
/
app.json
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
{
"name": "Posko",
"description": "A Point-of-sale written in ruby on rails",
"repository": "https://github.com/neume/posko",
"keywords": [
"rails",
"posko",
"point-of-sale"
],
"env": {
"DEMO_ACCOUNT_NAME": {
"description": "A unique name for your account. Alphanumeric characters only.",
"value": "thebeststore"
},
"DEMO_COMPANY": {
"description": "Company name.",
"value": "The Best Store"
},
"DEMO_EMAIL": {
"description": "Email address of admin.",
"value": "[email protected]"
},
"DEMO_PASSWORD": {
"description": "Admin account password",
"value": "posko"
},
"DEMO_FIRST_NAME": {
"description": "First Name",
"value": "Juan"
},
"DEMO_LAST_NAME": {
"description": "Last name.",
"value": "Dela Cruz"
}
},
"scripts": {
"postdeploy": "bundle exec rake db:migrate db:seed"
}
}