This repository was archived by the owner on Aug 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Setup Instructions
Wilfred Wee edited this page Jul 22, 2015
·
3 revisions
This page will guide you through the different ways to Setup and use DeClash.
#Security Warning!:
If you run DeClash on the default meteor.com website, it doesn't provide HTTPS encryption so use at your own risk! Running locally (offline) is fine.
##Option 1: Use the default website
- You can use declash.meteor.com
- Pros: No setup necessary. Get all the advantages of hosting on the Internet, such as users can register online, view the information for a round online etc.
- Cons: It's a free server provided by Meteor, performance is not guaranteed. Less admin control over the underlying database.
##Option 2: Spin up your own instance of DeClash
- Once you spin up your own instance, you can choose to deploy it to the internet or not.
- Steps:
- Install Meteor
- Either git clone DeClash (if you're familiar with git) or just download as zip (found on the right side).
- Unzip it to a folder.
- Open the command prompt and
cdto the same directory as the '.meteor' folder (not inside it) - To host DeClash on the internet using meteor's server (This is pretty much the same as Option 1 but you can use your own site name):
- In the command prompt, type
meteor deploy (yoursitename).meteor.comwithout brackets. - Within a few minutes, it should be done and you can use DeClash on the browser.
- To have DeClash just running on your machine (not connected to the internet)
- In the command prompt, type
meteor - Wait a few minutes for everything to load, then go to your browser and navigate to
http://localhost:3000 - You can also choose to host Meteor on your preferred Cloud provider, but I will not cover it here.