https://github.com/jesusr/ngmatrixbasiclearning
https://github.com/jesusr/ngmatrixbasiclearning
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jesusr/ngmatrixbasiclearning
- Owner: jesusr
- Created: 2016-07-19T12:48:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-26T11:19:35.000Z (almost 10 years ago)
- Last Synced: 2025-03-17T14:50:35.608Z (about 1 year ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Tutorial:
https://cloud.google.com/nodejs/getting-started/hello-world
1. Install the Google Cloud SDK.
- To install on Linux or Mac OS X, run the following commands:
+ $ curl https://sdk.cloud.google.com | bash
+ $ exec -l $SHELL
- Run the following command to authorize the SDK and configure your project:
+ $ gcloud init
2. Enter this command to deploy the app:
- $ gcloud preview app deploy app.yaml --promote
3. In the AppEngine panel: (https://console.developers.google.com)
- Versiones -> List of the versions, order by date.
- IMPORTANT: The first version (java) must always be the default version.
4. Details
- Package.json:
+ "engines": {
"node": ">=0.12.7"
}
+ "scripts": {
"start": "node server.js",
"deploy": "gcloud preview app deploy app.yaml"
}