Skip to content

Instantly share code, notes, and snippets.

View azens1995's full-sized avatar
🇳🇵
Learning

Eklak Dangaura azens1995

🇳🇵
Learning
View GitHub Profile
@azens1995
azens1995 / PULL_REQUEST.md
Created September 24, 2023 14:53
My personal Pull Request Template for Backend

Description

Write your PR description here...

Reference Ticket

The referenced issue is AMR-xxx.

Type of change

@azens1995
azens1995 / SwaggerConfig.java
Last active September 24, 2023 13:05
API Documentation using Swagger in Spring Boot 2.x
// Step 2: Create the configuration class to add the details about Swagger
@Configuration
@EnableSwagger2
@Import(SpringDataRestConfiguration.class)
public class SpringFoxConfig {
// Create a Docket bean
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
@azens1995
azens1995 / pull-request-template.md
Created January 29, 2020 04:41 — forked from Lordnibbler/pull-request-template.md
Sample Pull Request Template

Status

READY/IN DEVELOPMENT/HOLD

Migrations

YES | NO

Description

A few sentences describing the overall goals of the pull request's commits.

Related PRs