Skip to content

Commit 01a54d3

Browse files
committed
Update readme
1 parent 6729680 commit 01a54d3

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

README.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# SimpleEndpoints
2-
Turn your app engine project into Parse-like service
2+
With SimpleEndpoints, you can turn your app engine project into Parse-like service. It automatically creates CRUD endpoints for all entities without any coding. You can now focus on building enpoints that has business logic.
33

4-
# How to use it?
4+
# Endpoints
5+
You can pull this repo as eclipse project and deploy it as one of the versions of your app engine project. Once deployed, you will have access to the following endpoints:
6+
7+
# Read Endpoint
8+
List of all entities of a kind - GET https://endpoints.myproject.appspot.com/entity/<kind>
9+
Read of an entity for the list - GET https://endpoints.myproject.appspot.com/entity/<kind>/<id>
10+
11+
# Update Endpoint
12+
Update of an entity - PUT https://endpoints.myproject.appspot.com/entity/<kind>/<id>
13+
14+
# Create Endpoint
15+
Create of an entity - POST https://endpoints.myproject.appspot.com/entity/<kind>/<id>
16+
17+
# Delete Endpoint
18+
Delete of an entity - DELETE https://endpoints.myproject.appspot.com/entity/<kind>/<id>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Indices written at Tue, 4 Oct 2016 09:59:26 CEST -->
1+
<!-- Indices written at Tue, 4 Oct 2016 14:17:18 CEST -->
22

33
<datastore-indexes/>
44

0 commit comments

Comments
 (0)