You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
417 B
17 lines
417 B
"""EasyEngine core variable module"""
|
|
|
|
|
|
class EEVariables():
|
|
"""Intialization of core variables"""
|
|
def ___init__():
|
|
|
|
#EasyEngine core variables
|
|
ee_version
|
|
|
|
#EasyEngine stack installation varibales
|
|
ee_nginx_repo = "ppa:rtcamp/nginx"
|
|
ee_nginx = "nginx-full"
|
|
ee_php_repo = "ppa:ondrej/php5"
|
|
ee_php = "php5"
|
|
ee_mysql_repo = ""
|
|
ee_mysql = ""
|
|
|