ソースを参照

deploy##++++$

κρμγ 4 年 前
コミット
a78ee41299

+ 1 - 1
.drone.yml

@@ -4,7 +4,7 @@ pipeline:
     commands:
       - cd src/app
       - yarn
-  #    - yarn build
+      - yarn build
       - rm -rf ./node_modules
       - mkdir -p ./src/main/resources/static
       - cp -r ./dist/frei-app/* ./src/main/resources/static/

+ 1 - 1
src/app/tsconfig.base.json

@@ -26,6 +26,6 @@
   "angularCompilerOptions": {
     "fullTemplateTypeCheck": false,
     "strictInjectionParameters": false,
-    "enableIvy": false
+    "enableIvy": true
   }
 }

+ 0 - 3
src/main/kotlin/inn/ocsf/bee/freigeld/FreiApp.kt

@@ -4,8 +4,6 @@ import inn.ocsf.bee.freigeld.core.demo.DemoInMem
 import org.springframework.boot.SpringApplication
 import org.springframework.boot.autoconfigure.SpringBootApplication
 import org.springframework.context.annotation.Profile
-import org.springframework.context.annotation.PropertySource
-import org.springframework.context.annotation.PropertySources
 import org.springframework.scheduling.annotation.EnableScheduling
 import org.springframework.stereotype.Service
 import org.springframework.web.bind.annotation.RequestMapping
@@ -16,7 +14,6 @@ import javax.inject.Inject
 
 @SpringBootApplication
 @EnableScheduling
-@PropertySources(value = [PropertySource("classpath:application-default.yaml")])
 class FreiApp{
 
     @PostConstruct