Skip to content

Latest commit

 

History

History
70 lines (33 loc) · 1.85 KB

File metadata and controls

70 lines (33 loc) · 1.85 KB

IBM Cloud Developer Summit

Create a portfolio website in 3 steps

Step 1: Sign up for IBM Cloud and download CLI

Go to http://ibm.biz/devsummit, click 'Create a free account'

1

and fill in email, name, password, etc

2

Download the IBM Cloud CLI(Command Line Interface) from https://clis.ng.bluemix.net/

Step 2: Download and modify application files

Download or clone the application files and save them from: https://github.ibm.com/Alexander-Al-Basosi/IBM-Cloud-Developer-Summit

Open the 'Manifest.yml' file in a text editor of your choice, and edit the name of your app. Make sure that it is something unique as this will be your host name too.

appname

Next, open up the 'index.html' file to edit the information that would show up on yoor webpage such as name, title, description.

change

Don't forget to hit 'Save'!

Step 3: Deploy using CLI

If you're running on Windows, open up command line(cmd) If you're running on Mac, open up the terminal

Navigate to the folder with the application files using 'cd' followed by the folder path

newcd

Log into your IBM Cloud account through the CLI with the following command:

bx login -a https://api.eu-gb.bluemix.net -u your_email -p your_password

Select the organization and space in which you would create the app.

You can get these details from the IBM Cloud dashboard.

The organization name usually is the same as your email and the space is usually called 'dev'.

bx target -o organization_name -s space_name

To deploy the app:

bx app push

And voila! There you go, you just deployed a portfolio website.

You can visit your app via the URL which can be found at the end of the bx app push command or from the IBM Cloud dashboard.

url

urldb