mirror of
https://github.com/BZmHackTeam/BezpiecznaZywnosc
synced 2024-11-09 20:44:15 +01:00
Integrate frontend with docker
This commit is contained in:
parent
fa46b965b5
commit
a8173436ff
5 changed files with 547 additions and 446 deletions
|
@ -2,3 +2,8 @@ http://localhost {
|
|||
reverse_proxy /api/* http://sfood_api:80
|
||||
reverse_proxy http://sfood_ui:80
|
||||
}
|
||||
|
||||
http://localhost:44420 {
|
||||
header Access-Control-Allow-Origin "*"
|
||||
reverse_proxy http://sfood_ui:44420
|
||||
}
|
||||
|
|
|
@ -29,5 +29,6 @@ services:
|
|||
ports:
|
||||
- 80:80
|
||||
- 443:443
|
||||
- 44420:44420
|
||||
volumes:
|
||||
- ./dev.Caddyfile:/etc/caddy/Caddyfile
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<IsPackable>false</IsPackable>
|
||||
<SpaRoot>sfood\</SpaRoot>
|
||||
<DefaultItemExcludes>$(DefaultItemExcludes);$(SpaRoot)node_modules\**</DefaultItemExcludes>
|
||||
<SpaProxyServerUrl>https://localhost:44420</SpaProxyServerUrl>
|
||||
<SpaProxyServerUrl>http://localhost:44420</SpaProxyServerUrl>
|
||||
<SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
@ -41,7 +41,7 @@
|
|||
|
||||
<!-- Include the newly-built files in the publish output -->
|
||||
<ItemGroup>
|
||||
<DistFiles Include="$(SpaRoot)build\**" />
|
||||
<DistFiles Include="$(SpaRoot)dist\**" />
|
||||
<ResolvedFileToPublish Include="@(DistFiles->'%(FullPath)')" Exclude="@(ResolvedFileToPublish)">
|
||||
<RelativePath>wwwroot\%(RecursiveDir)%(FileName)%(Extension)</RelativePath>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
|
|
978
src/Nyanlabs.SFood.UI/sfood/package-lock.json
generated
978
src/Nyanlabs.SFood.UI/sfood/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -4,6 +4,7 @@
|
|||
"version": "0.0.1",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"start": "ionic serve --port 44420 --no-open --external",
|
||||
"dev": "vite",
|
||||
"build": "tsc && vite build",
|
||||
"preview": "vite preview",
|
||||
|
@ -21,11 +22,13 @@
|
|||
"@ionic/react-router": "^7.0.0",
|
||||
"@types/react-router": "^5.1.20",
|
||||
"@types/react-router-dom": "^5.3.3",
|
||||
"http-proxy-middleware": "^2.0.6",
|
||||
"ionicons": "^7.0.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-router": "^5.3.4",
|
||||
"react-router-dom": "^5.3.4"
|
||||
"react-router-dom": "^5.3.4",
|
||||
"run-script-os": "^1.1.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@capacitor/cli": "5.5.0",
|
||||
|
|
Loading…
Reference in a new issue