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
| #!/bin/bash | |
| # The MIT License | |
| # | |
| # Copyright (c) 2022 Dan Klco | |
| # | |
| # Permission is hereby granted, free of charge, | |
| # to any person obtaining a copy of this software and | |
| # associated documentation files (the "Software"), to | |
| # deal in the Software without restriction, including |
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
| const fs = require("fs"); | |
| const Path = require("path"); | |
| const winston = require("winston"); | |
| const { | |
| FileSystemUploadOptions, | |
| FileSystemUpload, | |
| } = require("@adobe/aem-upload"); | |
| const log = winston.createLogger({ | |
| format: winston.format.simple(), |
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
| FROM ubuntu:focal | |
| # Install Dependencies | |
| RUN apt-get update && apt-get install -y \ | |
| curl \ | |
| git \ | |
| vim \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # Setup GIT |
OlderNewer