# ethereum-docs **Repository Path**: hawkledger/ethereum-docs ## Basic Information - **Project Name**: ethereum-docs - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-09-29 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Ethereum Docs Website ## Installation - Clone the repository - Run meteor: `meteor` ## Deployment - Install Meteor Up globally: `npm install -g mup` - Create a `mup.json` file - Run `mup setup` - Run `mup deploy` Example of the `mup.json` file: ``` { "servers": [ { "host": "10.20.30.40", "username": "ubuntu", "pem": "~/.ssh/ethereum.pem", "env": {} } ], "setupMongo": false, "appName": "ethereum-docs", "app": "~/Projects/Ethereum/ethereum-docs", "env": { "PORT": 80, "ROOT_URL": "http://10.20.30.40", "MONGO_URL": "mongodb://mongouser:mongopass@10.20.30.40:27017/ethereum-docs" }, "deployCheckWaitTime": 15, "enableUploadProgressBar": true } ```