Compare commits
4 commits
614bb91c5a
...
ab4322fba8
Author | SHA1 | Date | |
---|---|---|---|
Mika Bomm | ab4322fba8 | ||
Mika Bomm | 654e7b1801 | ||
Mika Bomm | e5188c8c16 | ||
Mika Bomm | 82d467d24f |
|
@ -1,3 +1,7 @@
|
||||||
# Database section
|
# Database section
|
||||||
DB_USER=
|
DB_USER=
|
||||||
DB_PASSWORD=
|
DB_PASSWORD=
|
||||||
|
|
||||||
|
# Minio S3 section
|
||||||
|
MINIO_ACCESS_KEY=
|
||||||
|
MINIO_SECRET_KEY=
|
|
@ -2,10 +2,6 @@
|
||||||
<configuration default="false" name="start server" type="Application" factoryName="Application">
|
<configuration default="false" name="start server" type="Application" factoryName="Application">
|
||||||
<option name="ALTERNATIVE_JRE_PATH" value="17" />
|
<option name="ALTERNATIVE_JRE_PATH" value="17" />
|
||||||
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="true" />
|
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="true" />
|
||||||
<envs>
|
|
||||||
<env name="DB_USER" value="postgres" />
|
|
||||||
<env name="DB_PASSWORD" value="postgres" />
|
|
||||||
</envs>
|
|
||||||
<option name="MAIN_CLASS_NAME" value="com.mixel.docusphere.DocuSphereApplication" />
|
<option name="MAIN_CLASS_NAME" value="com.mixel.docusphere.DocuSphereApplication" />
|
||||||
<module name="DocuSphere.server.main" />
|
<module name="DocuSphere.server.main" />
|
||||||
<method v="2">
|
<method v="2">
|
||||||
|
|
|
@ -24,6 +24,12 @@ dependencies {
|
||||||
implementation 'org.springframework.security:spring-security-crypto:6.3.3'
|
implementation 'org.springframework.security:spring-security-crypto:6.3.3'
|
||||||
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
||||||
|
|
||||||
|
// Dotenv manager
|
||||||
|
implementation 'io.github.cdimascio:java-dotenv:5.2.2'
|
||||||
|
|
||||||
|
// Minio S3 Storage
|
||||||
|
implementation 'io.minio:minio:8.5.12'
|
||||||
|
|
||||||
runtimeOnly 'org.postgresql:postgresql'
|
runtimeOnly 'org.postgresql:postgresql'
|
||||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
package com.mixel.docusphere.config;
|
||||||
|
|
||||||
|
import io.github.cdimascio.dotenv.Dotenv;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.context.annotation.Primary;
|
||||||
|
import javax.sql.DataSource;
|
||||||
|
import org.springframework.boot.jdbc.DataSourceBuilder;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
public class DataSourceConfig {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
@Primary
|
||||||
|
public DataSource dataSource() {
|
||||||
|
// Load environment variables from .env file
|
||||||
|
Dotenv dotenv = Dotenv.configure().load();
|
||||||
|
|
||||||
|
// Build the DataSource using Dotenv values
|
||||||
|
DataSourceBuilder<?> dataSourceBuilder = DataSourceBuilder.create()
|
||||||
|
.driverClassName("org.postgresql.Driver")
|
||||||
|
.url(dotenv.get("DB_URL"))
|
||||||
|
.username(dotenv.get("DB_USER"))
|
||||||
|
.password(dotenv.get("DB_PASSWORD"));
|
||||||
|
|
||||||
|
return dataSourceBuilder.build();
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
package com.mixel.docusphere.config;
|
||||||
|
|
||||||
|
import io.github.cdimascio.dotenv.Dotenv;
|
||||||
|
import jakarta.annotation.PostConstruct;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
public class DotenvConfig {
|
||||||
|
|
||||||
|
private final Dotenv dotenv;
|
||||||
|
|
||||||
|
public DotenvConfig() {
|
||||||
|
this.dotenv = Dotenv.configure()
|
||||||
|
.directory("../") // Adjust path as needed
|
||||||
|
.filename(".env")
|
||||||
|
.ignoreIfMissing()
|
||||||
|
.load();
|
||||||
|
}
|
||||||
|
|
||||||
|
@PostConstruct
|
||||||
|
public void init() {
|
||||||
|
dotenv.entries().forEach(entry ->
|
||||||
|
System.setProperty(entry.getKey(), entry.getValue())
|
||||||
|
);
|
||||||
|
System.out.println("Dotenv variables loaded");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public Dotenv dotenv() {
|
||||||
|
return dotenv;
|
||||||
|
}
|
||||||
|
}
|
|
@ -4,9 +4,6 @@ spring:
|
||||||
|
|
||||||
datasource:
|
datasource:
|
||||||
driver-class-name: org.postgresql.Driver
|
driver-class-name: org.postgresql.Driver
|
||||||
url: jdbc:postgresql://localhost:5432/docusphere
|
|
||||||
username: ${DB_USER}
|
|
||||||
password: ${DB_PASSWORD}
|
|
||||||
|
|
||||||
jpa:
|
jpa:
|
||||||
hibernate:
|
hibernate:
|
||||||
|
@ -20,3 +17,10 @@ logging:
|
||||||
level:
|
level:
|
||||||
org.hibernate.SQL: debug
|
org.hibernate.SQL: debug
|
||||||
org.hibernate.type.descriptor.sql.BasicBinder: trace
|
org.hibernate.type.descriptor.sql.BasicBinder: trace
|
||||||
|
org.springframework.core.env: debug
|
||||||
|
|
||||||
|
minio:
|
||||||
|
endpoint: "http://localhost:9000" # Your MinIO endpoint URL
|
||||||
|
access-key: ${MINIO_ACCESS_KEY} # Environment variable for the access key
|
||||||
|
secret-key: ${MINIO_SECRET_KEY} # Environment variable for the secret key
|
||||||
|
bucket-name: docusphere # The bucket name you want to use
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
|
|
||||||
const showSearch = ref(false);
|
const showSearch = ref(false);
|
||||||
const userProfileActions = ref(false);
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -22,7 +21,12 @@ const userProfileActions = ref(false);
|
||||||
<!---------------->
|
<!---------------->
|
||||||
<!-- Search Bar -->
|
<!-- Search Bar -->
|
||||||
<!---------------->
|
<!---------------->
|
||||||
<v-btn icon="mdi-magnify" @click="showSearch = !showSearch"> </v-btn>
|
<v-btn
|
||||||
|
class="mr-1"
|
||||||
|
icon="mdi-magnify"
|
||||||
|
@click="showSearch = !showSearch"
|
||||||
|
>
|
||||||
|
</v-btn>
|
||||||
|
|
||||||
<v-slide-x-reverse-transition hide-on-leave>
|
<v-slide-x-reverse-transition hide-on-leave>
|
||||||
<v-responsive v-show="showSearch" min-width="20vw">
|
<v-responsive v-show="showSearch" min-width="20vw">
|
||||||
|
|
Loading…
Reference in a new issue