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 repositorycd developer-toolsnpm installbower install
The dev tools project must be run using HTTPS for web chat to work. To disable SSL, remove the "ssl" property from .ember-cli.
These instructions are based on these.
# Make and use ssl dir in this repo
mkdir ssl
cd ssl
# Generate keys
openssl genrsa -des3 -passout pass:x -out server.pass.key 2048
openssl rsa -passin pass:x -in server.pass.key -out server.key
rm server.pass.key
# Generate CSR
openssl req -new -key server.key -out server.csr
# Example config:
# ---------------
# Country Name (2 letter code) []:US
# State or Province Name (full name) []:IN
# Locality Name (eg, city) []:Indianapolis
# Organization Name (eg, company) []:Genesys
# Organizational Unit Name (eg, section) []:PureCloud
# Common Name (eg, fully qualified host name) []:localhost
# Email Address []:[email protected]
#
# Please enter the following 'extra' attributes
# to be sent with your certificate request
# A challenge password []:
# Generate cert
openssl x509 -req -sha256 -days 365 -in server.csr -signkey server.key -out server.crt
ember serve- Visit your app at https://localhost:4200.
Make use of the many generators for code, try ember help generate for more details
ember testember test --server
ember build(development)ember build --environment production(production)
Specify what it takes to deploy your app.