diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-02 11:32:27 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-02 11:32:27 +0900 |
| commit | c8a4d62e662943ef3e279da8f20b7cae2696757c (patch) | |
| tree | 7a6cdf40bf2e0a0974c9e099780cc0521e38c4f2 /docs/setup.en.md | |
| parent | Fix config init script (diff) | |
| download | sharkey-c8a4d62e662943ef3e279da8f20b7cae2696757c.tar.gz sharkey-c8a4d62e662943ef3e279da8f20b7cae2696757c.tar.bz2 sharkey-c8a4d62e662943ef3e279da8f20b7cae2696757c.zip | |
Update setup docs
Diffstat (limited to 'docs/setup.en.md')
| -rw-r--r-- | docs/setup.en.md | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/docs/setup.en.md b/docs/setup.en.md index a436d751c8..1d998b705f 100644 --- a/docs/setup.en.md +++ b/docs/setup.en.md @@ -35,32 +35,38 @@ Please install and setup these softwares: ##### Optional * [Elasticsearch](https://www.elastic.co/) - used to provide searching feature instead of MongoDB -*3.* Prepare configuration +*3.* Install Misskey +---------------------------------------------------------------- +1. `git clone -b master git://github.com/syuilo/misskey.git` +2. `cd misskey` +3. `npm install` + +*4.* Prepare configuration ---------------------------------------------------------------- 1. Copy `example.yml` of `.config` directory 2. Rename it to `default.yml` 3. Edit it -*4.* Install and build Misskey ----------------------------------------------------------------- +--- -1. `git clone -b master git://github.com/syuilo/misskey.git` -2. `cd misskey` -3. `npm install` -4. `npm run build` +Or you can generate config file via `npm run config` command. -#### Update -1. `git reset --hard && git pull origin master` -2. `npm install` -3. `npm run build` +*5.* Build Misskey +---------------------------------------------------------------- +1. `npm run build` -*5.* That is it. +*6.* That is it. ---------------------------------------------------------------- Well done! Now, you have an environment that run to Misskey. ### Launch Just `sudo npm start`. GLHF! +#### Way to Update to latest version of your Misskey +1. `git reset --hard && git pull origin master` +2. `npm install` +3. `npm run build` + ### Testing Run `npm test` after building |