{"id":16144258,"url":"https://github.com/ryanj/openshift-eventbrite-jquerymobile-demo","last_synced_at":"2025-04-06T20:15:15.667Z","repository":{"id":5187763,"uuid":"6362504","full_name":"ryanj/openshift-eventbrite-jquerymobile-demo","owner":"ryanj","description":"A demo app that uses Eventbrite's OAuth2.0 system to access and display your account data using jQueryMobile","archived":false,"fork":false,"pushed_at":"2012-10-25T01:31:29.000Z","size":7432,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-13T02:16:16.073Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ryanj.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-10-24T00:49:45.000Z","updated_at":"2015-04-15T01:26:58.000Z","dependencies_parsed_at":"2022-09-02T13:50:43.925Z","dependency_job_id":null,"html_url":"https://github.com/ryanj/openshift-eventbrite-jquerymobile-demo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanj%2Fopenshift-eventbrite-jquerymobile-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanj%2Fopenshift-eventbrite-jquerymobile-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanj%2Fopenshift-eventbrite-jquerymobile-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanj%2Fopenshift-eventbrite-jquerymobile-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ryanj","download_url":"https://codeload.github.com/ryanj/openshift-eventbrite-jquerymobile-demo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247543598,"owners_count":20955865,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-10T00:12:05.928Z","updated_at":"2025-04-06T20:15:15.635Z","avatar_url":"https://github.com/ryanj.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Node.js on OpenShift\n====================\n\nThis git repository helps you get up and running quickly w/ a node.js installation\non OpenShift. \n \nRunning on OpenShift\n----------------------------\n\nCreate an account at http://openshift.redhat.com/\n\nCreate a nodejs-0.6 application (you can call your application whatever you want)\n\n    rhc app create -a nodejs -t nodejs-0.6\n\nAdd this upstream repo\n\n    cd nodejs\n    git remote add upstream -m master git://github.com/openshift/nodejs-example.git\n    git pull -s recursive -X theirs upstream master\n    # note that the git pull above can be used later to pull updates\nThen push the repo upstream\n\n    git push\n\nThat's it, you can now checkout your application at:\n\n    http://nodejs-$yournamespace.rhcloud.com\nFeel free to change or remove this file, it is informational only.\n\nRepo layout\n===========\nnode_modules/                       - Any Node modules packaged with the app\ndeplist.txt                         - Deprecated.\npackage.json                        - npm package descriptor.\n.openshift/                         - Location for openshift specific files\n.openshift/action_hooks/pre_build   - Script that gets run every git push before\n                                      the build\n.openshift/action_hooks/build       - Script that gets run every git push as\n                                      part of the build process (on the CI\n                                      system if available)\n.openshift/action_hooks/deploy      - Script that gets run every git push after\n                                      build but before the app is restarted\n.openshift/action_hooks/post_deploy - Script that gets run every git push after\n                                      the app is restarted\n\nNotes about layout\n==================\nPlease leave the node_modules and .openshift directories but feel free to\ncreate additional directories if needed.\n\nNote: Every time you push, everything in your remote repo dir gets recreated\n      please store long term items (like an sqlite database) in the OpenShift\n      data directory, which will persist between pushes of your repo.\n      The OpenShift data directory is accessible relative to the remote repo\n      directory (../data) or via an environment variable OPENSHIFT_DATA_DIR.\n\n\nEnvironment Variables\n=====================\nOpenShift provides several environment variables to reference for ease\nof use.  The following list are some common variables but far from exhaustive:\n    process.env.OPENSHIFT_GEAR_NAME  - Application name\n    process.env.OPENSHIFT_GEAR_DIR   - Application dir\n    process.env.OPENSHIFT_DATA_DIR  - For persistent storage (between pushes)\n    process.env.OPENSHIFT_TMP_DIR   - Temp storage (unmodified files deleted after 10 days)\n\nWhen embedding a database using 'rhc app cartridge add', you can reference environment\nvariables for username, host and password:\n    process.env.OPENSHIFT_DB_HOST      - DB Host\n    process.env.OPENSHIFT_DB_PORT      - DB Port\n    process.env.OPENSHIFT_DB_USERNAME  - DB Username\n    process.env.OPENSHIFT_DB_PASSWORD  - DB Password\n\nWhen embedding a NoSQL database using 'rhc app cartridge add', you can reference environment\nvariables for username, host and password:\n    process.env.OPENSHIFT_NOSQL_DB_HOST      - NoSQL DB Host\n    process.env.OPENSHIFT_NOSQL_DB_PORT      - NoSQL DB Port\n    process.env.OPENSHIFT_NOSQL_DB_USERNAME  - NoSQL DB Username\n    process.env.OPENSHIFT_NOSQL_DB_PASSWORD  - NoSQL DB Password\n\nTo get a full list of environment variables, simply add a line in your\n.openshift/action_hooks/build script that says \"export\" and push.\n\n\ndeplist.txt\n===========\nA list of node modules to install, line by line on the server. This will happen\nwhen the user does a git push.\n\n\nAdditional information\n======================\nLink to additional information will be here, when we have it :)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryanj%2Fopenshift-eventbrite-jquerymobile-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryanj%2Fopenshift-eventbrite-jquerymobile-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryanj%2Fopenshift-eventbrite-jquerymobile-demo/lists"}