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/bash | |
# API description | |
echo "Started TIME:" | |
dt=$(date '+%d/%m/%Y %H:%M:%S'); | |
echo "$dt" | |
for i in {1..1000000} | |
do | |
echo "Executed times: $i" | |
curl -H "X-Authorization: api-key" --data "param_1=one¶m_2=2" https://api.com/v1 |
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/bash | |
# API log description | |
echo "Started TIME: $(date '+%d/%m/%Y %H:%M:%S')" > api.log | |
for i in {1..1000000} | |
do | |
echo " | |
Executed times: $i | |
str: $(date '+%d/%m/%Y %H:%M:%S.%N')" >> api.log; | |
curl -H "X-Authorization: api-key" --data "param_1=one¶m_2=2" https://api.com/v1 >> api.log; |
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
############### CONFIG ################################### | |
provider "digitalocean" { | |
token = "YOUR-TOKEN-HERE" | |
} | |
############### VMs ################################### | |
resource "digitalocean_droplet" "web" { | |
image = "centos-7-x64" | |
name = "webserver-1" | |
region = "fra1" |
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
Programming languages | |
- PHP | |
- NodeJS | |
- Angular4 | |
- GO | |
Source repositority | |
- Bitbucket | |
- Github | |
- GitLab |
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
Web frameworks | |
- Express (http://expressjs.com/) | |
Drivers | |
- MySQL Driver (https://github.com/mysqljs/mysql) | |
- Cassandra Driver (https://github.com/datastax/nodejs-driver) | |
- Beanstalkd Drive (https://github.com/ceejbot/fivebeans) | |
- Redis Driver (https://github.com/NodeRedis/node_redis) | |
- Elastic search (https://github.com/elastic/elasticsearch-js) | |
- Vault (https://www.npmjs.com/package/node-vault) |