Today 16th February 2016, CloudControl has announced that they are shutting down there services the 29th of February this year. It’s the second Platform as a Service which is closing its doors in less than a year (Shelly Cloud is stopping their service the 31st of March 2015). Our goal in this is to help you keeping your applications alive, and to help you developing them further and further without the burden of handling your own infrastructure.
Scalingo’s approach to Platform as a Service is close to CloudControl model. Both services are based on buildpacks and Procfile. Those two technilogies have been introduced by Heroku years ago and have become a standard for PaaS providers. Thanks to these similarities, the migration process only takes a few minutes.
Even though we think this migration documentation is comprehensive enough, don’t hesitate to search information in our documentation http://doc.scalingo.com and to contact our supportto help you in the migration process.
Just go at https://scalingo.com and follow the instructions to get an account.
Scalingo is proposing different ways communicate with its service, the more commoon is to use the web dashboard https://my.scalingo.com. Here, you’ll be able to create and configure your applications.
The command line interface (CLI) is pretty simple to install. Just go athttp://cli.scalingo.com and follow the instructions. It is essentialy like installing a single binary on your system, there is no dependency to install, it just works.
You will find its documentation at following page: Introducing the CLI.
Everything which can be done in the web dashboard can be done with the CLI, and even more, like accessible your databases with helper commands or running one-off jobs for your apps.
If you need to get things done automatically, you can use our open API. Its documentation can be located athttp://developers.scalingo.com. Everything which can be done through our web dashboard or our CLI can be done with this API as we’re also using it.
Clicking on ’+’ in the dashboard or with the CLI:
# Create an application named cloud-app
scalingo create cloud-app
Your application often need a database to run correctly. Most kind of databases are provided directly by Scalingo as addons. As previously you can do it on the dashboard by going in the ‘Addons’ tab of your application, or with our CLI:
# List all the addons available
scalingo addons-list
# List all the plans for an addon
scalingo addons-plans scalingo-postgresql
# Provision the 1GB plan of the PostgreSQL addon
scalingo addons-add -a cloud-app scalingo-postgresql 1g
Scalingo is providing the following addons:
You’ll find more information about these addons athttps://scalingo.com/addons
If an addon does not have an equivalent on Scalingo, you can use the environment variables of your CloudControl app, directly in your Scalingo app.
Before pushing your code, youd should setup your SSH key to authenticate your GIT pushes. With the dashboard, go on the 'Keys’ page and upload your public SSH key (usually$HOME/.ssh/id_rsa.pub
). Or obviously, you can do it with the CLI:
# Add a key named 'workstation-key' located at $HOME/.ssh/id_rsa.pub
scalingo keys-add workstation-key $HOME/.ssh/id_rsa.pub
We’re using the same workflow as CloudControl, so you first need to add a remote to your git repository:
# Add Scalingo remote for 'cloud-app'
git remote add scalingo git@scalingo.com:cloud-app.git
# Push your code
git push scalingo master
That’s it, your application will be live in a minute.
CloudControl didn’t rely on their infrastructure to host the databases and third-party providers were providing those. They gathered in their documentationall the different method to export the data of the database of their the different third party provider.
To import them on Scalingo, we’ll advise you to follow the more comprehensive guide located in our documentation.
What is called 'alias’ on cloudcontrol is named 'custom domain names’ on Scalingo. To migrate your app you’ve to modify the configuration of your app on Scalingo, and also the DNS field at your domain name registrar dashboard.
# Add the 'my.cloudapp.com' domain name to you application
scalingo -a cloud-app domains-add my.cloudapp.com
For more informations about domains on Scalingo, take a look at our dedicateddomain name management page.
Don’t hesitate to contact us at support@scalingo.com
At Scalingo (with our partners) we use trackers on our website.
Some of those are mandatory for the use of our website and can't be refused.
Some others are used to measure our audience as well as to improve our relationship with you or to send you quality content and advertising.