This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.your.organization</groupId> | |
<artifactId>basic-pom-file</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<packaging>jar</packaging> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Java 8 (Oracle) Dockerfile | |
# Base image: Ubuntu | |
# Installs: Java 8 | |
FROM ubuntu:latest | |
# Install basic software support | |
RUN apt-get update && \ | |
apt-get install --yes software-properties-common |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: R | Install RStudio dependency libjpeg62 | |
apt: | |
name: libjpeg62 | |
- name: R |Install RStudio | |
shell: curl https://download1.rstudio.org/rstudio-1.0.136-amd64.deb >> ~/Downloads/rstudio.deb && dpkg -i ~/Downloads/rstudio.deb | |
- name: R | Prepare local library | |
shell: mkdir -p ~/R/library | |
- name: R | Prepare Renviron | |
shell: echo "R_LIBS_USER='~/R/library/'" > ~/.Renviron |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"parserOptions": { | |
"ecmaVersion": 6, | |
"sourceType": "module" | |
}, | |
"env": { | |
"node": true, | |
"es6": true | |
}, | |
"extends": ["eslint:recommended"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "webpack-hangs", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"author": "teekaay", | |
"license": "MIT", | |
"scripts": { | |
"start": "node app.js", | |
"test": "./node_modules/.bin/jest", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
STACK_TAGS="team=team environment=prod" | |
aws cloudformation deploy \ | |
--template-file cf-templates/resources.yaml \ | |
--stack-name mystack-prod-resources \ | |
--capabilities CAPABILITY_IAM \ |