Skip to content

Instantly share code, notes, and snippets.

@ftntming
ftntming / wildfly-cli
Created September 30, 2022 01:34 — forked from gustavoapolinario/wildfly-cli
wildfly-cli / jboss-cli
wildfly-cli / jboss-cli common commands
# Connect into wildfly/jboss cli (only with wildfly up)
$JBOSS_HOME/bin/jboss-cli.sh --connect
# Wildfly cli offline
$JBOSS_HOME/bin/jboss-cli.sh --commands="embed-server,$COMMAND,stop-embedded-server"
# Commands:
/system-property=VAR_NAME:add(value=VAR_VALUE)
@ftntming
ftntming / Jest_GitLab_CI.md
Created September 30, 2023 00:47 — forked from rishitells/Jest_GitLab_CI.md
Setting up Jest tests and coverage in GitLab CI

Configuring Jest Tests in GitLab CI

1. Add GitLab CI configuration file in the root

In the root of your project, add .gitlab-ci.yml with the configuration below.

image: node:latest

stages: