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
image: python:3.9-alpine | |
before_script: | |
- apk update | |
- cd ~ | |
- mkdir .aws && touch .aws/credentials | |
- printf "[cikguuapi]\naws_access_key_id = $AWS_ACCESS_KEY_ID\naws_secret_access_key = $AWS_SECRET_ACCESS_KEY" >> .aws/credentials | |
stages: # List of stages for jobs, and their order of execution |
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
sudo add-apt-repository ppa:git-core/ppa | |
sudo apt update | |
sudo apt install git |
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
requirements | |
node version 16.14 | |
npm version 8.4.1 | |
setup mongodb using docker (dont put password) | |
docker run -d -p 27017:27017 --name some-mongo \ | |
-e MONGO_INITDB_ROOT_USERNAME=mongoadmin \ | |
mongo |