We have recently added call graph documentation for all Go
code. See Appendix A
in the user manual. Also, you will find a table of package names and their descriptions. Call graphs were created by go-calvis. Instructions for using go-callvis
are here. This is an excellent way to become more familiar with the code. From the ./go
simply enter go-callvis csa.go
. This will bring up an interactive code exploration tool.
We are becoming more formal in our tracking of backlog with increased usage driving feature requests. You'll find our official backlog detailed in our Roadmap
To summarize, here's what is in progress:
- Rules that look for the absence of a pattern
- Allowing multiple instances of file patterns
csa
has pre-built binaries for Windows, OSX, and Linux. The quickest way to get starting using csa
is to download the latest release. Included with the release is the latest user manual in pdf format. A sample portfolio of applications is also included.
No install is required. Simply download the version that matches your operating system and move the executable to the directory of your choice. It's best to put the directory in your path to simplify running csa
. Everything you need to use csa
is inside this single executable.
To see all the options to run, simply type:
csa -h
For more detailed help instructions:
csa --help-long
To simplify usage, csa
has a default mode of analyze
, since that is it most frequently used. Typically, you point csa
to a directory that contains sub-directories, each containing one application. csa
considers this directory of sub-directories a portfilio. To tell csa
to process the directory as a portfolio of applications, we use the-p
flag on the command-line
csa -p <directory of application code>
csa
will process all the subdirectories as applications and write the results to the console. Look in the directory where csa
was copied to and you'll see a file, csa.db
. This is a SQLite database full of it findings.
To see the results of the analysis, you'll need to call csa
one more time and launch the browser-based user interface:
csa ui
csa
will take you directly to your browser and activate the user interface.
If you want to contribute to csa
, you'll need to build it.
-
Golang - Installation instructions are here
-
Docker - Instructions for Get Docker
-
go-bindata - Install go-bindata using go get
Alternatives if go get fails
OSX
$> brew install go-bindata
Linux
sudo apt install go-bindata
Clone the repo into your the directory of your choice.
Run the build script
Make sure your in the root directory of your project and run the build script
$> ./buildDocker.sh [executable type] or buildDocker.ps1
Executable Type Options
O creates a OSX executable
L creates a Linux executable
W creates a Windows executable
OWL builds all three
Verify docker created directory has correct ownership
$> sudo chown -R $USER:`id -g -n $USER` $WORKING_DIR/go/exe
Check that the exe runs
The executable(s) can be found in <project root dir>/go/exe
directory
The cloud-suitability-analyzer project team welcomes contributions from the community. Before you start working with cloud-suitability-analyzer, please read our Developer Certificate of Origin. All contributions to this repository must be signed as described on that page. Your signature certifies that you wrote the patch or have the right to pass it on as an open-source patch. For more detailed information, refer to CONTRIBUTING.md.
Cloud Suitability Analyzer is released under the BSD-2 license. Please see LICENSE.txt