Milos Knezevic
Articles
-
How to increase memory allocated to app
You can adjust the amount of memory allocated to your application (and services) using the resources key in your app configuration. The total allocated memory must stay within the limits set by you...
-
How do I add a new team member to my project?
Upsun offers three environment types: Production, Staging, and Development. You can assign user permissions for each environment type. Any permissions you assign to an environment type apply to all...
-
Django - Gateway 502 errors
If your encountering 502 errors when accessing your Django application, make sure your wsgi.py is included in your project directory. Making sure your start command looks like:start: "gunicorn -w 4...
-
Let's Git Started
Welcome! This is a beginner training for Upsun.Start by first watching the video below - it will give you a good idea of the problem Upsun is trying to solve: the complexity of application deliver...
-
Let's Git Started 2: Your first project
Create a projectAnytime you want to deploy something on Upsun, you will begin by creating a new project. On Upsun, a project will be roughly equivalent to your repository. That is, a Upsun project ...
-
Let's Git Started 3: Your first deploy
What happened The environmentGo to the management console.On the project landing page, click Main under the Environments section to visit the environment you just pushed to. This is the production ...
-
Let's Git Started 4: Your first branch
Create an environmentFrom your terminal run the command:upsun environment:branch updatesThis command does two things: It created a new branch in your local repo called updates. It created a new act...
-
How to customize ImageMagick configuration
Say you want to support large images or different image formats. These are defined in configuration files listed here. You can override the defaults set by Upsun by providing one or more of these f...
-
Let's Git Started 5: Your first merge
MergeIn your terminal, run the command:upsun environment:merge -yAfter running the command (and in the activity seen on both the Main and updates environments), you’ll see the following:$ upsun env...
-
Sample configuration to deploy Go on Upsun
Getting started with Go development on Upsun is really easy, there are only a few steps needed: Create a new project with upsun project:create Write the following .upsun/config.yaml file Deploy yo...