This README outlines the details of collaborating on this Ember application. A short introduction of this app could easily go here.
You will need the following things properly installed on your computer.
git clone <repository-url>
this repository- change into the new directory
npm install
bower install
ember server
- Visit your app at http://localhost:4200.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
ember build
(development)ember build --environment production
(production)
Specify what it takes to deploy your app.
sudo yum update
sudo wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
sudo rpm -ivh epel-release-6-8.noarch.rpm
sudo yum groupinstall "Development Tools"
sudo yum install zlib-devel bzip2-devel
sudo yum install openssl-devel ncurses-devel sqlite-devel readline
cd $DOWNLOAD_DIR
sudo wget https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tar.xz
sudo tar xvf Python-2.7.10.tar.xz
cd $DOWNLOAD_DIR/Python-2.7.10
sudo ./configure
sudo make
Here we may have to manually resolve any outstanding dependencies and re-run make.
sudo make altinstall
sudo yum install python-pip
sudo yum install python-virtualenv
sudo rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm
sudo yum install nginx18
sudo rpm -Uvh http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-1.noarch.rpm
sudo yum install postgresql94 postgresql94-server postgresql94-contrib
sudo pip install supervisor
sudo wget https://raw.githubusercontent.com/Supervisor/initscripts/master/redhat-init-equeffelec -O /etc/init.d/supervisord
sudo echo_supervisord_conf > /etc/supervisord.conf
sudo mkdir /etc/supervisor.d
[include]
files = supervisor.d/*.ini
cd /u01
git clone git@github.com:wbrefvem/conference-room-api.git
cd conference-room-api
virtualenv .venv
sudo cp conference-room-api.ini /etc/supervisor.d/conference-room-api.ini
cd /u01
git clone git@github.com:wbrefvem/conference-room.git
cd conference-room
sudo cp nginx.conf /etc/nginx/nginx.conf
sudo service postgresql-9.4 start
sudo service supervisord start
sudo service nginx restart
cd /u01
git clone git@github.com:wbrefvem/conference-room-api.git
cd conference-room-api
COMPOSE_FILE=production.yml docker-compose up -d
cd /u01
git clone git@github.com:wbrefvem/conference-room.git
cd conference-room
COMPOSE_FILE=production.yml docker-compose up -d