Skip to content

Instantly share code, notes, and snippets.

View deepu105's full-sized avatar
🏠
Working from home

Deepu K Sasidharan deepu105

🏠
Working from home
View GitHub Profile
application {
config {
baseName store,
applicationType gateway,
packageName com.jhipster.demo.store,
serviceDiscoveryType eureka,
authenticationType jwt,
prodDatabaseType mysql,
cacheProvider hazelcast,
buildTool gradle,
@deepu105
deepu105 / Devoxx-MA-Istio-demo.jdl
Last active November 27, 2018 13:36
Devoxx MA demo - JHipster + Istio
application {
config {
baseName store
applicationType gateway
packageName com.jhipster.demo.store
serviceDiscoveryType no
authenticationType jwt
prodDatabaseType mysql
cacheProvider hazelcast
buildTool gradle
application {
config {
baseName store
applicationType gateway
packageName com.jhipster.demo.store
serviceDiscoveryType no
authenticationType jwt
prodDatabaseType mysql
cacheProvider hazelcast
buildTool gradle
@deepu105
deepu105 / online-store.jdl
Last active June 23, 2019 14:22
A JDL to create an e-commerce store microservice architecture
application {
config {
baseName store,
applicationType gateway,
packageName com.jhipster.demo.store,
serviceDiscoveryType eureka,
authenticationType jwt,
prodDatabaseType mysql,
cacheProvider hazelcast,
buildTool gradle,
@deepu105
deepu105 / spaceship10k.theme
Created July 1, 2019 20:09
My custom theme similar to Spaceship based on powerlevel10k
export TERM="xterm-256color" # This sets up colors properly
# set shell
export SHELL=/usr/bin/zsh
# Add exports from your profile
source ~/.profile
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
@deepu105
deepu105 / jhipster-demo-registry.jdl
Last active September 14, 2019 01:25
Devoxx MA JHipster demo JDL
application {
config {
baseName store
applicationType gateway
packageName com.jhipster.demo.store
serviceDiscoveryType eureka
authenticationType jwt
prodDatabaseType mysql
cacheProvider hazelcast
buildTool gradle
@deepu105
deepu105 / jhipster-book-online-store-istio.jdl
Created December 10, 2019 21:22
jhipster-book-online-store-istio.jdl
/* Store gateway application */
application {
config {
baseName store
applicationType gateway
packageName com.mycompany.store
serviceDiscoveryType no
authenticationType jwt
prodDatabaseType mysql
### JHipster Developers Association Individual Contributor License Agreement
Thank you for your interest in contributing to open source software projects (**"Projects"**)
made available by [JHipster Developers Association](https://www.jhipster.tech/association/)
or its affiliates (the **"Association"**). This Individual Contributor License Agreement (**"CLA"**) sets out the
terms governing any source code, object code, bug fixes, configuration changes, tools, specifications,
documentation, data, materials, feedback, information or other works of authorship that you submit or
have submitted, in any form and in any manner, to the Association in respect of any of the Projects
(collectively **“Contributions”**). If you have any questions respecting this Agreement,
please contact **info@jhipster.tech**
@deepu105
deepu105 / e-commerce-app.jdl
Created June 24, 2020 14:11
Adyen E-Commerce JDL
/** Product sold by the Online store */
entity Product {
name String required
description String
price BigDecimal required min(0)
size Size required
image ImageBlob
}
enum Size {
//import ...;
export interface ICartProp extends StateProps, DispatchProps {}
export const Cart = (props: ICartProp) => {
useEffect(() => {
props.getEntityForCurrentUser();
}, []);
const remove = id => () => {