Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Localstack | 47,311 | 4 | 11 | a day ago | 44 | July 22, 2022 | 398 | other | Python | |
💻 A fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline | ||||||||||
Pulumi | 16,173 | 132 | 347 | 20 hours ago | 3,838 | September 19, 2022 | 1,821 | apache-2.0 | Go | |
Pulumi - Infrastructure as Code in any programming language. Build infrastructure intuitively on any cloud using familiar languages 🚀 | ||||||||||
Awesome Kubernetes | 13,893 | 19 days ago | 9 | other | Shell | |||||
A curated list for awesome kubernetes sources :ship::tada: | ||||||||||
Aws Cli | 13,830 | 2,710 | 299 | 3 days ago | 1,555 | July 06, 2022 | 503 | other | Python | |
Universal Command Line Interface for Amazon Web Services | ||||||||||
Xg2xg | 12,414 | 12 days ago | 36 | |||||||
by ex-googlers, for ex-googlers - a lookup table of similar tech & services | ||||||||||
Awesome Aws | 11,514 | 8 days ago | 1 | December 21, 2015 | 65 | other | Python | |||
A curated list of awesome Amazon Web Services (AWS) libraries, open source repos, guides, blogs, and other resources. Featuring the Fiery Meter of AWSome. | ||||||||||
Stack On A Budget | 11,509 | 2 months ago | 1 | mit | ||||||
A collection of services with great free tiers for developers on a budget. Sponsored by Mockoon, the best mock API tool. https://mockoon.com | ||||||||||
Aws Cdk | 10,279 | 108 | 1,147 | 17 hours ago | 214 | September 22, 2022 | 1,728 | apache-2.0 | TypeScript | |
The AWS Cloud Development Kit is a framework for defining cloud infrastructure in code | ||||||||||
Terraformer | 10,272 | 1 | 3 days ago | 20 | November 15, 2021 | 70 | apache-2.0 | Go | ||
CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastructure to Code | ||||||||||
Chalice | 9,760 | 126 | 31 | 4 days ago | 86 | June 01, 2022 | 441 | apache-2.0 | Python | |
Python Serverless Microframework for AWS |
The Eucalyptus Management Console is a web-based interface to a local Eucalyptus cloud and/or AWS services.
For bug reports, improvement request and general project planning, we use Jira: https://eucalyptus.atlassian.net/
To obtain the latest development source code for the eucalyptus management console, visit eucalyptus/eucaconsole. Pull requests are welcome and appreciated. By submitting code to the eucalyptus management console, you agree that code will be licensed under the 2-clause BSD license. A copy of this license is included in the COPYING file that accompanies the source code.
Prior to installing Pyramid and its dependencies, you may need to install the following libraries...
Ubuntu:
apt-get install openssl build-essential python-dev swig memcached libmemcached-dev libxml2-dev libxslt-dev
Fedora:
dnf install openssl-devel python-devel swig memcached libmemcached-devel libxml2-devel libxslt-devel; dnf groupinstall 'Development tools'
OS X:
Install homebrew, then run
brew install libevent openssl swig libmagic memcached libmemcached libxml2 libxslt
Run python setup.py develop to set up the development environment. This only needs to be run once or when the "requires" package versions in setup.py are modified.
Note: It is strongly recommended to set up the development environment in a virtualenv.
If setup.py fails with an M2Crypto error and you're on a yum-based system (Fedora, CentOS, RHEL), download the M2Crypto package at https://pypi.python.org/pypi/M2Crypto and install via fedora_setup.sh install
The CSS files are pre-processed using Sass, so you'll need to set up a Sass-to-CSS watcher to output CSS.
To set up Compass as the file watcher...
sudo gem install compass cd eucaconsole/static compass watch .
Once you have installed compass, there's a handy shortcut to enable the watcher. From the repo root...
make watch
Note that as of Foundation 5.5, Sass 3.4 and Compass 1.0 or later are required. Older versions will not work. To install the proper versions of Sass and Compass, run the following commands at the root of this repo...
sudo gem install bundler bundle install
See http://bundler.io/bundle_install.html for more info about Bundler and using a Gemfile
To run the server, you will need to specify the path to the config file (console.ini). Copy the default ini file to the application root. At the repo root...
cp conf/console.default.ini ./console.ini
The default settings assume an HTTPS/SSL environment. To disable HTTPS/SSL, set session.secure to false in console.ini
session.secure = false
The session keys are written to a file specified in console.ini. You may need to change the session.keyini setting if you don't have write access to the default location, or you may comment out the following line to have the session keys generated at the repo root.
session.keyini = /etc/eucaconsole/session-keys.ini
Run the server with
./launcher.sh
launcher.sh is provided as an alias for pserve console.ini --reload
On OS X (Yosemite and El Capitan), you may encounter issues installing M2Crypto
There is a known bug in the M2Crypto bindings and swig versions greater than 3.0.4. Using Homebrew you may install swig 3.0.4...
brew uninstall swig brew install homebrew/versions/swig304 python setup.py develop ./launcher.sh
If there are issues with M2Crypto locating the OpenSSL libraries (which could happen after an XCode update), reinstall the XCode Command Line Tools via xcode-select --install
The launcher.sh script runs the application with gunicorn and eventlet, closely matching the production deployment setup.
To have Pyramid automatically detect modifications to templates and views,
The --reload flag instructs Pyramid to automatically watch for changes in the view callables.
Note: Waitress may work better than gunicorn with the --reload flag. To install Waitress, run pip install -e .[dev] (this will also install the Pyramid Debug Toolbar).
To switch from gunicorn to Waitress for development, change the server:main section in your console.ini to this:
[server:main] use = egg:waitress#main host = 0.0.0.0 port = 8888
The Pyramid Debug Toolbar can be enabled by adding pyramid_debugtoolbar to the app:main section of console.ini
[app:main] # ... pyramid.includes = pyramid_beaker pyramid_chameleon pyramid_debugtoolbar pyramid_layout
You may also find it useful to set the logging level to DEBUG in the console.ini config file...
[logger_root] # ... handlers = logfile, screen_debug
The management console assumes an SSL setup. To disable SSL for development purposes, set session.secure = false in the config file (console.ini)
A production deployment assumes an SSL setup, requiring nginx. To configure nginx...
The unit tests are based on Python's standard unittest library.
To run all tests, run the following at the repo root:
python setup.py test
To run the tests with nose and report test coverage:
python setup.py nosetests --with-coverage
Note that you will need to pip install nose, coverage, nose-cov to use nose with coverage
To run a single test (this is not obvious with nose integrated with setup.py):
python setup.py nosetests --tests tests.somepkg.somemodule
The translation strings are marked in templates and in python scripts as decribed at http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/i18n.html#i18n-chapter
The translations require Babel and lingua, which can be install via pip install -e .[i18n]
To generate the translation files, run 'make translations' at the repo root.
To contribute translations, follow the instructions at https://github.com/eucalyptus/eucaconsole/wiki/Contributing-Translations
yum install -y npm
npm install
to install npm packages listed in the file package.json
npm install -g grunt-cli
to allow grunt cli to run
Gruntfile.js
grunt
grunt bowercopy
grunt karma
grunt karma:ci
bower.json
"dependencies": { "angular": "1.2.26", "angular-sanitize": "1.2.26", "angular-mocks": "1.2.26", "jquery": "2.0.3", "jasmine": "2.0.3", "jasmine-jquery": "2.0.5" }
Gruntfile.js
bowercopy: { angular: { options: { destPrefix: 'eucaconsole/static/js/thirdparty/angular' }, files: { 'angular.min.js': 'angular/angular.min.js', 'angular-sanitize.min.js': 'angular-sanitize/angular-sanitize.min.js', 'angular-mocks.js': 'angular-mocks/angular-mocks.js' } },
grunt bowercopy
karma.conf.js
files: [ 'templates/panels/*.pt', 'static/js/thirdparty/modernizr/custom.modernizr.js', 'static/js/thirdparty/jquery/jquery.min.js', 'static/js/thirdparty/angular/angular.min.js', 'static/js/thirdparty/angular/angular-sanitize.min.js', 'static/js/thirdparty/angular/angular-mocks.js', 'static/js/thirdparty/jquery/jquery.generateFile.js', 'static/js/widgets/notify.js', 'static/js/pages/eucaconsole_utils.js', 'static/js/thirdparty/jquery/chosen.jquery.min.js', 'static/js/thirdparty/jasmine/jasmine-jquery.js', 'static/js/pages/custom_filters.js', 'static/js/widgets/tag_editor.js', 'static/js/widgets/securitygroup_rules.js', 'static/js/pages/keypair.js', 'static/js/jasmine-spec/SpecHelper.js', 'static/js/jasmine-spec/spec_security_group_rules.js', 'static/js/jasmine-spec/spec_keypair.js', 'static/js/jasmine-spec/spec_tag_editor.js' ],
./eucaconsole/static/js/jasmine-spec/
grunt karma
grunt karma:ci
See the wiki page https://github.com/eucalyptus/eucaconsole/wiki/JavaScript-UnitTest-Submit-Guideline for more details.