Skip to content

Instantly share code, notes, and snippets.

View mahendra150's full-sized avatar
❤️‍🔥
Hello Git user

Mahendra Chaudhari mahendra150

❤️‍🔥
Hello Git user
View GitHub Profile
@aoudiamoncef
aoudiamoncef / IntegrationTest.java
Last active February 9, 2024 10:50
Spring Boot Custom Test Annotations
package com.maoudia;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.Profile;
import org.springframework.test.context.TestPropertySource;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
@mahendra150
mahendra150 / ansible-aws.md
Last active May 15, 2020 13:49 — forked from diegopacheco/ansible-aws.md
How to Install Ansible on Amazon Linux / CentOS? done...... simple step
sudo su
yum update
yum install -y git
cd /usr/local/src
yum -y install git python-jinja2 python-paramiko PyYAML make MySQL-python
git clone git://github.com/ansible/ansible.git
cd ansible
git submodule update --init --recursive
make install