mirror of https://github.com/OpenVidu/openvidu.git
Angular project relocated into /src
parent
a6c2d0c3b6
commit
8a89073239
|
@ -26,16 +26,6 @@
|
||||||
<build>
|
<build>
|
||||||
|
|
||||||
<finalName>${project.artifactId}-${project.version}</finalName>
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
||||||
|
|
||||||
<resources>
|
|
||||||
<resource>
|
|
||||||
<filtering>true</filtering>
|
|
||||||
<directory>src/main/resources</directory>
|
|
||||||
<excludes>
|
|
||||||
<exclude>frontend/**</exclude>
|
|
||||||
</excludes>
|
|
||||||
</resource>
|
|
||||||
</resources>
|
|
||||||
|
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd frontend
|
cd frontend
|
||||||
ng build --output-path ../static
|
ng build --output-path ../../main/resources/static
|
||||||
cd ../../../../
|
cd ../../../
|
||||||
mvn clean package
|
mvn clean package
|
||||||
java -jar target/openvidu-sample-app-0.0.1-SNAPSHOT.war
|
java -jar target/openvidu-sample-app-0.0.1-SNAPSHOT.war
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
|
@ -1,4 +1,9 @@
|
||||||
server.port: 5000
|
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.url: jdbc:mysql://localhost/openvidu_sample_app
|
||||||
spring.datasource.username: root
|
spring.datasource.username: root
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue