Update install instructions

So that they don't need to be updated each and every time a new version will be released.
This commit is contained in:
Philipp Muens 2016-06-29 07:26:57 +02:00
parent f0cbafa824
commit acbdfbc547
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ internals of Serverless so that you know how it works and how you can extend and
Follow these simple steps to install the alpha, create and deploy your first service, run your function and remove the
service afterwards.
1. `npm install -g serverless@1.0.0-alpha.1`
1. `npm install -g serverless@alpha`
2. `serverless create --name first-service --provider aws`
3. `cd first-service`
4. `serverless deploy`

View File

@ -20,7 +20,7 @@ corresponding Node version number printed out.
Great! Now we've got everything in place to install Serverless. Serverless can be easily installed via
[npm](https://npmjs.org) which was installed alongside Node.js.
Open up a terminal and type `npm install -g serverless@1.0.0-alpha.1` to install the alpha version of Serverless.
Open up a terminal and type `npm install -g serverless@alpha` to install the alpha version of Serverless.
Once the installation process is done you can verify that Serverless is installed successfully by running
`serverless --version`. You should see version 1.0.0 printed out on the terminal!