Skip to content

zeus911/awsomer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#AWSomer AWSomer (pronounced awesomer) is a AWS dashboard built on Django 1.6. The only requirements should be django, boto and having boto configured with a IAM user with access to the supported services. AWSomer is still under heavy development, please let me know any issues you have or you would like to see added here

##Services

  • CloudFront
  • EC2
  • Route53
  • SQS

##Setup

  1. Clone the AWSomer repo
git clone https://github.com/shtuffit/awsomer.git
  1. Install dependencies
pip install Django boto
  1. Comment out unused services in awsomer/setttings.py INSTALLED_APPS to keep them from appearing in Navs
...
INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.humanize',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'awsomer',
    'ec2',
    'route53',
#    'sqs',
)
...
  1. Sync the database
python manage.py syncdb
  1. Run the project
python manage.py runserver
  1. Start AWSomering, go to http://localhost:8000 in your browser

About

AWSomer is an AWS dashboard built on Django 1.6 using boto

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 36.3%
  • Python 35.1%
  • JavaScript 26.3%
  • CSS 2.3%