Compare commits
9 Commits
97459ccd1d
...
26e0676608
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
26e0676608 | ||
|
|
f5ffd33bf8 | ||
|
|
9276aa988c | ||
|
|
63c6a6f393 | ||
|
|
5e896e112c | ||
|
|
fe80932db0 | ||
|
|
8dbdbca9a3 | ||
|
|
ef3ab20fff | ||
|
|
2498c9525d |
@@ -1,2 +1,2 @@
|
|||||||
web: dotnet /app/pushy/Pushy.dll
|
web: /app/pushy/Pushy.dll
|
||||||
silo: silo/Pushy.Silo.dll
|
silo: silo/Pushy.Silo.dll
|
||||||
6
.idea/.idea.Pushy/.idea/vcs.xml
generated
6
.idea/.idea.Pushy/.idea/vcs.xml
generated
@@ -1,5 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
|
<component name="CommitMessageInspectionProfile">
|
||||||
|
<profile version="1.0">
|
||||||
|
<inspection_tool class="CommitFormat" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
|
<inspection_tool class="CommitNamingConvention" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
|
</profile>
|
||||||
|
</component>
|
||||||
<component name="VcsDirectoryMappings">
|
<component name="VcsDirectoryMappings">
|
||||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
</component>
|
</component>
|
||||||
|
|||||||
@@ -24,6 +24,8 @@ RUN dotnet build "Pushy.Silo.csproj" --no-restore -c $BUILD_CONFIGURATION -o /ap
|
|||||||
WORKDIR "/src/Pushy/Pushy"
|
WORKDIR "/src/Pushy/Pushy"
|
||||||
RUN dotnet build "Pushy.csproj" --no-restore -c $BUILD_CONFIGURATION -o /app/pushy
|
RUN dotnet build "Pushy.csproj" --no-restore -c $BUILD_CONFIGURATION -o /app/pushy
|
||||||
|
|
||||||
|
COPY .dokku/Procfile /app/.dokku/Procfile
|
||||||
|
|
||||||
FROM build AS publish
|
FROM build AS publish
|
||||||
ARG BUILD_CONFIGURATION=Release
|
ARG BUILD_CONFIGURATION=Release
|
||||||
|
|
||||||
@@ -37,9 +39,8 @@ RUN dotnet publish "Pushy.csproj" -c $BUILD_CONFIGURATION -o /app/publish/pushy
|
|||||||
FROM base AS final
|
FROM base AS final
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=publish /app/publish .
|
COPY --from=publish /app/publish .
|
||||||
|
COPY --from=publish /app/.dokku /app/.dokku
|
||||||
|
|
||||||
RUN pwd
|
|
||||||
RUN ls /app/pushy/Pushy.dll
|
|
||||||
RUN ls -la
|
RUN ls -la
|
||||||
RUN ls -la silo
|
|
||||||
RUN ls -la pushy
|
ENTRYPOINT ["dotnet"]
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
<Solution>
|
<Solution>
|
||||||
<Project Path="Pushy\Pushy.Client\Pushy.Client.csproj" Type="Classic C#" />
|
<Folder Name="/Frontend/">
|
||||||
<Project Path="Pushy\Pushy\Pushy.csproj" Type="Classic C#" />
|
<Project Path="Pushy\Pushy.Client\Pushy.Client.csproj" Type="Classic C#" />
|
||||||
|
<Project Path="Pushy\Pushy\Pushy.csproj" Type="Classic C#" />
|
||||||
|
</Folder>
|
||||||
|
<Project Path="Pushy.Domain\Pushy.Domain.csproj" Type="Classic C#" />
|
||||||
|
<Project Path="Pushy.Silo\Pushy.Silo.csproj" Type="Classic C#" />
|
||||||
</Solution>
|
</Solution>
|
||||||
@@ -7,7 +7,6 @@
|
|||||||
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
|
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
|
||||||
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
|
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
|
||||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||||||
<LangVersion>13</LangVersion>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -28,8 +28,4 @@
|
|||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="9.0.0" />
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="9.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<Folder Include="Grains\" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
Reference in New Issue
Block a user