You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sn...@apache.org on 2014/04/01 19:20:53 UTC

[1/2] git commit: readme

Repository: incubator-usergrid
Updated Branches:
  refs/heads/master ec3f5b1c1 -> fb0aab044
  refs/pull/91/merge [deleted] 4ee357e26


readme


Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/58739e1d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/58739e1d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/58739e1d

Branch: refs/heads/master
Commit: 58739e1d5835729cbe13f73a916bf3c79b950eab
Parents: 7078048
Author: Shawn Feldman <sh...@gmail.com>
Authored: Mon Mar 31 16:59:54 2014 -0600
Committer: Shawn Feldman <sh...@gmail.com>
Committed: Mon Mar 31 16:59:54 2014 -0600

----------------------------------------------------------------------
 portal/README.md | 88 +++++++++------------------------------------------
 1 file changed, 15 insertions(+), 73 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/58739e1d/portal/README.md
----------------------------------------------------------------------
diff --git a/portal/README.md b/portal/README.md
index 9c9a289..809468e 100644
--- a/portal/README.md
+++ b/portal/README.md
@@ -17,63 +17,29 @@ Use the admin portal for administrative operations, including:
 * View and modify your data, with full support for users, groups, and custom entities and collections.
 * Generate and access credentials for API access.
 
-##Navigating the admin portal
-
-The admin portal interface displays a variety of pages that display information and enable you to perform management
-actions. These include:
-
-* Account home
-* Application dashboard
-* Users
-* Groups
-* Roles
-* Activities
-* Collections
-* Analytics
-* Properties
-* Shell
-
-You can display any of these pages by clicking its respective item in the left sidebar menu of the admin portal.
-
-###Account Home
-When you log in to the admin portal, you are presented with a home page for managing the applications and data for your organization.
-
-The home page displays:
-
-* Applications associated with the currently selected organization
-* Administrators that are part of that organization
-* API credentials for the organization
-* Activities performed recently by administrators
-* A menu for building, organizing, and managing application content
-
-###Application dashboard
-The Application Dashboard shows a variety of statistical data for the selected application. You can see the activity level, the total number of entities, and other vital statistics for monitoring application health as well as quota limits.
+##Deploying or Developing
 
-###Users
-The Users page lists the user entities created in the current application. You can add or delete users. You can also edit various properties of a user entity such as the user's name or address.
+If you are just deploying:
 
-###Groups
-The Groups page lists the groups created in the current application. You can add or delete groups. You can also edit some properties of a group such as the group's display name.
+1. Install Node.js from http://nodejs.org/download/.
+2. From the root directory, run `./build.sh`.
+3. This will create a directory in the root called dist. In dist is a zip file called appsvc-ui.zip. Unzip and deploy to your favorite web server or if you run "./build.sh dev" you can then navigate to http://localhost:3000/ .
 
-###Roles
-The Roles page lists the roles defined for the current application. You can add or delete roles. You can also specify and update the permissions for a role.
+If you are developing:
 
-###Activities
-The Activities page lists the activities posted in an application. You can view when the activity was posted, who posted the activity, and the content of the activity. You can also search for activities by content or actor.
+1. From the root directory, run `./build.sh dev`.
+2. To debug in the browser go to http://localhost:3000/index-debug.html; http://localhost:3000/ will point to the compressed files.
+3. If the libraries get out of sync, run `./build.sh` again and this will run grunt build in the background.
 
-###Collections
-The Collections page lists the collections created in the current application. You can also search for, add, update, or deleted collections.
+If you want to run the e2e tests:
 
-###Analytics
-Use this page to collect and analyze Usergrid usage data such as the number of times a particular collection has been accessed over a period of time.
-You can specify parameters for data collection, including what data points you'd like to collect, over what time period, and at what resolution.
-When you click the Generate button, the results are displayed in tabular form and graphically in the lower portion of the page.
+- From the root directory, run `./build.sh e2e`.
 
-###Properties
-The Properties page lists the credentials (Client ID and Client Secret) for the current application. You can regenerate credentials for the application from this page.
+To version open a terminal and run 'npm version x.x.x' this will add a tag and increment the package.json.
 
-###Shell
-The Shell page gives you a simple way to get started using the Usergrid API. It provides a command-line environment within your web browser for trying out Usergrid API calls interactively.
+##Using a different api location
+1. You can use api from usergrid at any location by navigating to the portal and adding a querystring http://myurl/?api_url=http://someurl
+2. Another option is to change the Usergrid.overrideUrl in config.js
 
 ##Displaying API calls as cURL commands
 You can display the equivalent cURL syntax for each API call that is made through the Admin portal. The calls are displayed in the console area of any of the following browsers: Chrome, Internet Explorer (in the debugger), Firefox (in Firebug), and Safari.
@@ -86,30 +52,6 @@ You can also use the Usergrid Command Line (ugc) for terminal access to the User
 
 <https://github.com/usergrid/usergrid>
 
-##Deploying or Developing
-
-If you are just deploying:
-
-1. Install Node.js from http://nodejs.org/download/.
-2. Install Grunt with `sudo npm install grunt-cli -g`
-3. From the root directory, run `./build.sh`.
-4. This will create a directory in the root called dist. In dist is a zip file called appsvc-ui.zip. Unzip and deploy to your favorite web server.
-
-If you are developing:
-
-1. From the root directory, run `./build.sh`.
-2. To monitor and build the performance code => run `grunt --gruntfile Perf-Gruntfile.js dev;`. This will need to continue running in terminal as you are developing.
-3. To monitor and build the portal code base => run `grunt dev;`. This will open a browser with http://localhost:3000/index-debug.html.
-4. To debug in the browser go to http://localhost:3000/index-debug.html; http://localhost:3000/ will point to the compressed files.
-5. If the libraries get out of sync, run `./build.sh` again and this will run grunt build in the background.
-
-If you want to run the e2e tests:
-
-- From the root directory, run `./build.sh e2e`.
-
-
-To version open a terminal and run 'npm version x.x.x' this will add a tag and increment the package.json.
-
 ##Unit Tests
 [Unit Tests](UnitTests.md)
 


[2/2] git commit: Merge pull request #91 from shawnfeldman/update-readme

Posted by sn...@apache.org.
Merge pull request #91 from shawnfeldman/update-readme

Remove versioned files and update readme.  

Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/fb0aab04
Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/fb0aab04
Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/fb0aab04

Branch: refs/heads/master
Commit: fb0aab04443fcfd10f8c8d01315d525cb6fac275
Parents: ec3f5b1 58739e1
Author: Rod Simpson <ro...@rodsimpson.com>
Authored: Tue Apr 1 11:13:55 2014 -0600
Committer: Rod Simpson <ro...@rodsimpson.com>
Committed: Tue Apr 1 11:13:55 2014 -0600

----------------------------------------------------------------------
 portal/README.md | 88 +++++++++------------------------------------------
 1 file changed, 15 insertions(+), 73 deletions(-)
----------------------------------------------------------------------