This commit is contained in:
Märt Kalmo
2017-03-04 10:59:28 +02:00
commit 48633a91dc
6 changed files with 171 additions and 0 deletions

19
ng1/data/db.json Normal file
View File

@@ -0,0 +1,19 @@
{
"contacts": [
{
"_id": 1,
"name": "Jack",
"phone": "123"
},
{
"_id": 2,
"name": "Jill",
"phone": "456"
},
{
"_id": 3,
"name": "Mary",
"phone": "789"
}
]
}

3
ng1/data/routes.json Normal file
View File

@@ -0,0 +1,3 @@
{
"/api/": "/"
}