Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content
This repository has been archived by the owner on Apr 7, 2023. It is now read-only.

Latest commit

 

History

History
56 lines (35 loc) · 2.02 KB

setup.md

File metadata and controls

56 lines (35 loc) · 2.02 KB

🔨 Setup

This section will show you how to install cop to your computer. Once you're done with this, head over to the Configure section!

You will need to install Node.js to run cop. The LTS version should be fine.

If you're not into technical stuff

Head over to cop's Releases, and click on the Source code (zip) button from the latest stable release (or an older one, if you're into that... just don't download a 3 year old release, please?).

If you're a professional risk-taker and love your software with extra bugs, you can also download the source code from the latest revision. Just click on the green Code button on the main page and then on Download ZIP.

Once you've acquired this neat ZIP, you can extract it with your favorite unzipping tool into your favorite folder.

If you're on Windows

You can double-click on the setup.bat file, under the windows/ folder.

If you're on any other OS

You'll have to run these two commands from your terminal. Make sure you've browsed into the cop directory (with the cd command):

npm install
npm run build

If you're into technical stuff

Clone the repo to your computer with git:

$ git clone https://github.com/cAttte/cop.git
$ cd cop

Install the dependencies with npm:

$ npm install

Build the code to pure JavaScript:

$ npm run build