- apimatic.io
- AutoRest (Open Source)
- Swagger Codegen (Open Source)
- oapi-codegen (Open Source)
- OpenAPI-CodeGen (Open Source)
- OpenAPI Generator (Open Source)
- go-swagger (Open Source)
- _api (Open Source)
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
<?php | |
/********* CONFIG ********/ | |
$clusterEndpoint = ""; | |
$clusterPort = 3306; | |
$clusterRegion = "us-east-1"; | |
$dbUsername = ""; | |
$dbDatabase = ""; | |
/*************************/ |
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
tail -f app/logs/dev.log | awk ' | |
/(request|app)\.INFO/ {print "\033[36m" $0 "\033[39m"} | |
/(request|app)\.WARNING/ {print "\033[33m" $0 "\033[39m"} | |
/(request|app)\.ERROR/ {print "\033[31m" $0 "\033[39m"} | |
/(request|app)\.CRITICAL/ {print "\033[31m" $0 "\033[39m"} | |
' |
As a freelancer, I build a lot of web sites. That's a lot of code changes to track. Thankfully, a Git-enabled workflow with proper branching makes short work of project tracking. I can easily see development features in branches as well as a snapshot of the sites' production code. A nice addition to that workflow is that ability to use Git to push updates to any of the various sites I work on while committing changes.