使用Dokku部署Flask应用程序

时间:2015-11-17 18:31:06

标签: flask dokku

我使用dokku部署了Flask应用程序,现在我想修改代码并重新部署它。我在网上找到的所有文件都说我需要使用下面的命令

添加git remote
<tb:TaskbarIcon x:Name="AppNotifyIcon"
                DataContext="{Binding Path=DataContext, RelativeSource={RelativeSource AncestorType={x:Type Window}}}"
                ToolTipText="{Binding Source={StaticResource LocalizedStrings}, Path=Strings.MainTitle}"
                Tag="{Binding}">
    <tb:TaskbarIcon.ContextMenu>
        <ContextMenu DataContext="{Binding Path=PlacementTarget.Tag, RelativeSource={RelativeSource Self}}">
            <MenuItem Header="{Binding Source={StaticResource LocalizedStrings}, Path=Strings.NotifyIconOpen}" Click="MenuItem_Open_Click"/>
            <MenuItem Header="Technologies" ItemsSource="{Binding TechnologyList}">
               <MenuItem.ItemContainerStyle>
                   <Style>
                      <Setter Property="MenuItem.Command" Value="{Binding VmCommand}"/>
                      <Setter Property="MenuItem.CommandParameter" Value="{Binding}"/>
                   </Style>
               </MenuItem.ItemContainerStyle>
           </MenuItem>
           <MenuItem Header="{Binding Source={StaticResource LocalizedStrings}, Path=Strings.NotifyIconExit}" Click="MenuItem_Exit_Click"/>
      </ContextMenu>
  </tb:TaskbarIcon.ContextMenu>

我是否需要指定domain.com:test作为我的Flask应用程序的域名,或者它应该是git repo?

1 个答案:

答案 0 :(得分:0)

我们需要添加如下的遥控器,然后推送更改。

git remote add dokku dokku@<IP of server where app is hosted>:<App Domain Name>

然后使用git remote -v

验证远程是否已添加
git push dokku master -- to publish the change