Angular project relocated into /src

pull/20/head
pabloFuente 2017-05-31 10:41:59 +02:00
parent a6c2d0c3b6
commit 8a89073239
60 changed files with 7 additions and 12 deletions

View File

@ -27,16 +27,6 @@
<finalName>${project.artifactId}-${project.version}</finalName>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
<excludes>
<exclude>frontend/**</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>

View File

@ -1,6 +1,6 @@
#!/bin/sh
cd frontend
ng build --output-path ../static
cd ../../../../
ng build --output-path ../../main/resources/static
cd ../../../
mvn clean package
java -jar target/openvidu-sample-app-0.0.1-SNAPSHOT.war

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -1,4 +1,9 @@
server.port: 5000
server.ssl.enabled: true
server.ssl.key-store: classpath:openvidu-selfsigned.jks
server.ssl.key-store-password: openvidu
server.ssl.key-store-type: JKS
server.ssl.key-alias: openvidu-selfsigned
spring.datasource.url: jdbc:mysql://localhost/openvidu_sample_app
spring.datasource.username: root