diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-02-28 20:59:01 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-02-28 21:01:47 +0900 |
| commit | ef8f624ad8dda83455014c87e9e8dc7263bcb22f (patch) | |
| tree | 18126750260217596f58f2512a8ea264f966fe6d | |
| parent | Merge branch 'master' of https://github.com/syuilo/misskey (diff) | |
| download | misskey-ef8f624ad8dda83455014c87e9e8dc7263bcb22f.tar.gz misskey-ef8f624ad8dda83455014c87e9e8dc7263bcb22f.tar.bz2 misskey-ef8f624ad8dda83455014c87e9e8dc7263bcb22f.zip | |
Update README.md
| -rw-r--r-- | README.md | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -82,14 +82,24 @@ Note that `$(pwd)` is the working directory. Install -------------------------------- -Run `wget https://github.com/syuilo/misskey/archive/release.zip && unzip release.zip && rm release.zip && cd misskey-release && cp -rf * .. && rm -rf * && cd ../ && rm -rf misskey-release && npm install` +### Using built code +1. `git clone -b release git://github.com/syuilo/misskey.git` +2. `npm install` -...or Build yourself --------------------------------- -1. Clone this repository +#### Update +1. `git fetch` +2. `git reset --hard origin/release` +3. `npm install` + +### Using source code +1. `git clone -b master git://github.com/syuilo/misskey.git` 2. `npm install` 3. `npm run build` +#### Update +1. `git pull origin master` +2. `npm install` + Launch -------------------------------- `sudo npm start` |