Run a NGO for 6$ per year!
- DynamoDB for database
- Lambda / Vercel for backend
- Netlify / Vercel / Surge / Render for frontend
- S3 for file/image hosting
- Cloudinary for image hosting
- IFTTT to webhook for cron
- RedisLabs for queues, cache
- Figma for designing and prototyping
This file contains 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
Host input_server | |
User input_id | |
HostName input_IP | |
IdentityFile input_path_of_key |
This file contains 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
{ | |
"landscape": [ | |
{ | |
"category": null, | |
"name": "Provisioning", | |
"subcategories": [ | |
{ | |
"subcategory": null, | |
"name": "Automation & Configuration", | |
"items": [ |
This file contains 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
kubectl get namespace "terminating-namespace" -o json \ | |
| tr -d "\n" | sed "s/\"finalizers\": \[[^]]\+\]/\"finalizers\": []/" \ | |
| kubectl replace --raw /api/v1/namespaces/terminating-namespace/finalize -f - |
This file contains 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/sh | |
# Update Base System | |
sudo apt update -y | |
sudo apt upgrade -y | |
# Install Docker | |
echo -e "\e[1;31m Installing Docker \e[0m" | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sh get-docker.sh |
This file contains 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
# Server configuration | |
DRONE_SERVER_HOST=20.127.52.110 | |
DRONE_SERVER_PROTO=http | |
DRONE_GITHUB_CLIENT_ID=338c882b16314d3d0419 | |
DRONE_GITHUB_CLIENT_SECRET=42649d21480fb110745a5cf9ba87d6c30c5e252f | |
DRONE_RPC_SECRET=881960be55b0522dc6f9a2645828a85b | |
DRONE_TLS_AUTOCERT=false | |
DRONE_USER_CREATE=username:pavanbelagatti,admin:true | |
# Runners configuration | |
DRONE_RPC_HOST=20.127.52.110 |
This file contains 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
default_box = "generic/opensuse42" | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. |
Service | OpenStack | AWS |
---|---|---|
Virtual Servers | Nova Instance | EC2 |
Docker | Magnum | ECS |
Scalability | Heat with Scaling | AWS Scaling |
Load Balancing | LBaas | Elastic Load Balancing |
API | OpenStack API | EC2 AP |
GUI | Horizon | Console |
Storage Object | Swift | S3 |
Block Storage | Cinder | EBS |
If it requires a sign-off message in the following format appear on each commit in the pull request:
This is my commit message
Signed-off-by: Random Developer <[email protected]>
The text can either be manually added to your commit body, or you can add either -s
or --signoff
to your usual git commit commands.
OlderNewer