Skip to content
View kelverarruda's full-sized avatar
🌴
On vacation
🌴
On vacation

Highlights

  • Pro
Block or Report

Block or report kelverarruda

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Config file Spring Boot in yml format Config file Spring Boot in yml format
    1
    spring:
    2
      # POSTGRES DB CONFIG
    3
      datasource:
    4
        driver-class-name: org.postgresql.Driver
    5
        username: postgres
  2. Config Spring Data PostgreSQL DB Config Spring Data PostgreSQL DB
    1
    # DATABASE
    2
    spring.datasource.url=jdbc:postgresql://localhost:5432/databasename
    3
    spring.datasource.username=postgres
    4
    spring.datasource.password=postgres
    5
    spring.datasource.driver-class-name=org.postgresql.Driver
  3. Config Spring Data H2 DB Config Spring Data H2 DB
    1
    spring.datasource.url=jdbc:h2:mem:testdb
    2
    spring.datasource.driverClassName=org.h2.Driver
    3
    spring.datasource.username=sa
    4
    spring.datasource.password=
    5
    
                  
  4. Personalize messages Spring Security Personalize messages Spring Security
    1
    AbstractAccessDecisionManager.accessDenied=Access is denied
    2
    AbstractLdapAuthenticationProvider.emptyPassword=Empty Password
    3
    AbstractSecurityInterceptor.authenticationNotFound=An Authentication object was not found in the SecurityContext
    4
    AbstractUserDetailsAuthenticationProvider.badCredentials=Bad credentials
    5
    AbstractUserDetailsAuthenticationProvider.credentialsExpired=User credentials have expired
  5. How to install docker in Windows How to install docker in Windows
    1
    ------ HOW TO INSTALL DOCKER IN WINDOWS ------
    2
    
                  
    3
    # DOWNLOAD DOCKER FOR WINDOWS
    4
    https://www.docker.com/products/docker-desktop
    5
    
                  
  6. How to install Portainer.io in Docker How to install Portainer.io in Docker
    1
    # CREATE VOLUME TO SAVE DATA
    2
    docker volume create portainer_data
    3
    
                  
    4
    # CREATE CONTAINER
    5
    docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:2.11.1