Make Everything Look Yours
Mely is a blog platform built on hapi.js/node.js
Create MYSQL db for Blog
Clone Mely > Go To Mely Folder > Copy/Edit Config Files > NPM Install
git clone [email protected]:EOL-Labs/Mely.git
cd Mely
cp config/database.example.js config/database.js
cp config/server.example.js config/server.js
cp config/mail.example.js config/mail.js
Edit config files
// DB Config
exports.config = {
type: "mysql",
hostname: "localhost",
port: 3306,
db: "yourDBName",
username: "yourUsername",
password: "yourPassword"
}
// Server Config
exports.config = {
hostname: "localhost",
port: 8080,
};
// Mail Config
exports.mailconfig = {
host: "mailserver_host",
port: 25,
from: "Server Name <[email protected]>"
};
NPM Install
npm install .
Start Mely
node .
Admin Interface
Blog Interface
© EOL Labs