2017-03-30 08:57:42 +09:00
|
|
|
![Misskey](./assets/title.png)
|
2017-02-22 20:19:34 +09:00
|
|
|
================================
|
|
|
|
|
2016-12-29 07:49:51 +09:00
|
|
|
[![][travis-badge]][travis-link]
|
|
|
|
[![][dependencies-badge]][dependencies-link]
|
2017-01-24 18:41:07 +09:00
|
|
|
[![][himawari-badge]][himasaku]
|
|
|
|
[![][sakurako-badge]][himasaku]
|
2017-02-27 04:02:24 +09:00
|
|
|
[![][mit-badge]][mit]
|
2017-01-24 18:41:07 +09:00
|
|
|
|
2016-12-31 13:37:21 +09:00
|
|
|
Welcome!
|
|
|
|
|
2017-02-22 20:19:34 +09:00
|
|
|
[Misskey](https://misskey.xyz) is a completely open source,
|
|
|
|
ultimately sophisticated new type of mini-blog based SNS.
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-03-22 16:19:32 +09:00
|
|
|
![ss](./assets/ss.jpg)
|
2016-12-29 20:43:33 +09:00
|
|
|
|
2017-02-22 20:19:34 +09:00
|
|
|
Key features
|
|
|
|
--------------------------------
|
2016-12-31 14:15:37 +09:00
|
|
|
* Automatically updated timeline
|
2017-02-27 18:16:01 +09:00
|
|
|
* Private messages
|
2016-12-31 14:15:49 +09:00
|
|
|
* Free 1GB storage
|
2016-12-31 14:11:31 +09:00
|
|
|
* Mobile device support (smartphone, tablet, etc)
|
2017-03-27 19:00:51 +09:00
|
|
|
* Web API for third-party applications
|
2017-02-27 14:31:38 +09:00
|
|
|
* Twitter integration
|
2016-12-31 14:11:31 +09:00
|
|
|
|
2017-01-03 05:28:54 +09:00
|
|
|
and more! You can touch with your own eyes at https://misskey.xyz/.
|
2016-12-31 14:11:31 +09:00
|
|
|
|
2017-02-22 20:19:34 +09:00
|
|
|
Setup
|
|
|
|
--------------------------------
|
2016-12-31 07:06:38 +09:00
|
|
|
### Dependencies :package:
|
2016-12-31 02:47:45 +09:00
|
|
|
Please install these softwares.
|
2017-02-22 20:19:34 +09:00
|
|
|
* *Node.js* and *npm*
|
2016-12-31 05:25:26 +09:00
|
|
|
* **[MongoDB](https://www.mongodb.com/)**
|
|
|
|
* **[Redis](https://redis.io/)**
|
|
|
|
* **[GraphicsMagick](http://www.graphicsmagick.org/)**
|
2016-12-31 07:06:38 +09:00
|
|
|
|
|
|
|
#### Optional
|
2016-12-31 13:05:15 +09:00
|
|
|
* [Elasticsearch](https://www.elastic.co/) - used to provide searching feature instead of MongoDB
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2016-12-30 00:23:25 +09:00
|
|
|
### Domains
|
2016-12-29 07:49:51 +09:00
|
|
|
Misskey requires two domains called the primary domain and the secondary domain.
|
|
|
|
|
|
|
|
* The primary domain is used to provide main service of Misskey.
|
|
|
|
* The secondary domain is used to avoid vulnerabilities such as XSS.
|
|
|
|
|
|
|
|
**Ensure that the secondary domain is not a subdomain of the primary domain.**
|
|
|
|
|
2017-02-21 07:34:14 +09:00
|
|
|
#### Subdomains
|
2017-02-22 20:19:34 +09:00
|
|
|
Note that Misskey uses following subdomains:
|
2017-02-21 07:34:14 +09:00
|
|
|
|
|
|
|
* **api**.*{primary domain}*
|
|
|
|
* **auth**.*{primary domain}*
|
|
|
|
* **about**.*{primary domain}*
|
|
|
|
* **dev**.*{primary domain}*
|
|
|
|
* **file**.*{secondary domain}*
|
2017-02-15 00:44:07 +09:00
|
|
|
|
2017-02-22 20:19:34 +09:00
|
|
|
### reCAPTCHA tokens
|
2016-12-31 02:39:46 +09:00
|
|
|
Please visit https://www.google.com/recaptcha/intro/ and generate keys.
|
2016-12-30 00:23:25 +09:00
|
|
|
|
2017-02-22 20:19:34 +09:00
|
|
|
Setup with Docker :whale:
|
|
|
|
--------------------------------
|
2016-12-31 06:38:14 +09:00
|
|
|
Ensure that the working directory is the repository root directory.
|
|
|
|
|
|
|
|
To create misskey image:
|
2016-12-31 17:33:53 +09:00
|
|
|
|
2016-12-31 13:00:11 +09:00
|
|
|
`sudo docker build -t misskey ./docker`
|
2016-12-31 06:38:14 +09:00
|
|
|
|
|
|
|
To run misskey:
|
2016-12-31 17:33:53 +09:00
|
|
|
|
2016-12-31 06:38:14 +09:00
|
|
|
`sudo docker run --rm -i -t -p $PORT:80 -v $(pwd):/root/misskey -v $DBPATH:/data/db misskey`
|
|
|
|
|
2016-12-31 17:36:11 +09:00
|
|
|
where `$PORT` is the port used to access Misskey Web from host browser
|
|
|
|
and `$DBPATH` is the path of MongoDB database on the host for data persistence.
|
2016-12-31 06:38:14 +09:00
|
|
|
|
|
|
|
ex: `sudo docker run --rm -i -t -p 80:80 -v $(pwd):/root/misskey -v /data/db:/data/db misskey`
|
|
|
|
|
2016-12-31 17:33:53 +09:00
|
|
|
If you want to run misskey in production mode, add `--env NODE_ENV=production` like this:
|
|
|
|
|
2016-12-31 17:35:07 +09:00
|
|
|
`sudo docker run --rm -i -t -p 80:80 -v $(pwd):/root/misskey -v /data/db:/data/db --env NODE_ENV=production misskey`
|
2016-12-31 17:33:53 +09:00
|
|
|
|
2016-12-31 17:36:11 +09:00
|
|
|
Note that `$(pwd)` is the working directory.
|
2016-12-31 06:38:14 +09:00
|
|
|
|
2017-02-28 20:18:51 +09:00
|
|
|
Install
|
2017-02-22 20:19:34 +09:00
|
|
|
--------------------------------
|
2017-02-28 20:59:01 +09:00
|
|
|
### Using built code
|
2017-03-14 17:17:04 +09:00
|
|
|
We have official release of the latest Misskey that passed the test.
|
|
|
|
Please visit https://github.com/syuilo/misskey/tree/release to see built code.
|
|
|
|
|
2017-02-28 20:59:01 +09:00
|
|
|
1. `git clone -b release git://github.com/syuilo/misskey.git`
|
2017-02-28 21:23:57 +09:00
|
|
|
2. `cd misskey`
|
|
|
|
3. `npm install`
|
2017-02-28 20:18:51 +09:00
|
|
|
|
2017-02-28 20:59:01 +09:00
|
|
|
#### Update
|
2017-03-01 17:47:22 +09:00
|
|
|
1. `git fetch`
|
|
|
|
2. `git reset --hard origin/release`
|
|
|
|
3. `npm install`
|
2017-02-28 20:59:01 +09:00
|
|
|
|
|
|
|
### Using source code
|
|
|
|
1. `git clone -b master git://github.com/syuilo/misskey.git`
|
2017-02-28 21:23:57 +09:00
|
|
|
2. `cd misskey`
|
|
|
|
3. `npm install`
|
|
|
|
4. `npm run build`
|
2017-02-22 20:19:34 +09:00
|
|
|
|
2017-02-28 20:59:01 +09:00
|
|
|
#### Update
|
2017-03-01 17:47:22 +09:00
|
|
|
1. `git pull origin master`
|
|
|
|
2. `npm install`
|
|
|
|
3. `npm run build`
|
2017-02-28 20:59:01 +09:00
|
|
|
|
2017-02-22 20:19:34 +09:00
|
|
|
Launch
|
|
|
|
--------------------------------
|
2017-03-26 22:16:42 +09:00
|
|
|
Just `sudo npm start`. GLHF!
|
2017-02-28 20:18:51 +09:00
|
|
|
|
2017-02-22 20:19:34 +09:00
|
|
|
Testing
|
|
|
|
--------------------------------
|
|
|
|
Run `npm test` after building
|
|
|
|
|
|
|
|
Debugging :bug:
|
|
|
|
--------------------------------
|
2017-02-28 21:01:01 +09:00
|
|
|
### Show debug messages
|
2017-02-28 20:59:15 +09:00
|
|
|
Misskey uses [debug](https://github.com/visionmedia/debug) and the namespace is `misskey:*`.
|
2017-01-23 18:25:52 +09:00
|
|
|
|
2017-03-26 21:32:19 +09:00
|
|
|
Contribution
|
2017-02-22 20:19:34 +09:00
|
|
|
--------------------------------
|
2017-03-26 21:32:19 +09:00
|
|
|
Please see [Contribution guide](./CONTRIBUTING.md).
|
2016-12-31 05:35:23 +09:00
|
|
|
|
2017-02-22 20:19:34 +09:00
|
|
|
Collaborators
|
|
|
|
------------------------------
|
2017-03-01 17:02:07 +09:00
|
|
|
| ![syuilo][syuilo-icon] | ![Morisawa Aya][ayamorisawa-icon] | ![otofune][otofune-icon] |
|
|
|
|
|------------------------|-----------------------------------|---------------------------------|
|
|
|
|
| [syuilo][syuilo-link] | [Aya Morisawa][ayamorisawa-link] | [Otoha Funabashi][otofune-link] |
|
2017-01-18 19:40:18 +09:00
|
|
|
|
2017-02-22 20:19:34 +09:00
|
|
|
Copyright
|
|
|
|
------------------------------
|
2017-01-19 20:44:19 +09:00
|
|
|
Misskey is an open-source software licensed under [The MIT License](LICENSE).
|
2016-12-29 07:49:51 +09:00
|
|
|
|
|
|
|
[mit]: http://opensource.org/licenses/MIT
|
|
|
|
[mit-badge]: https://img.shields.io/badge/license-MIT-444444.svg?style=flat-square
|
|
|
|
[travis-link]: https://travis-ci.org/syuilo/misskey
|
2017-02-27 01:46:43 +09:00
|
|
|
[travis-badge]: http://img.shields.io/travis/syuilo/misskey/master.svg?style=flat-square
|
2016-12-29 07:49:51 +09:00
|
|
|
[dependencies-link]: https://gemnasium.com/syuilo/misskey
|
|
|
|
[dependencies-badge]: https://img.shields.io/gemnasium/syuilo/misskey.svg?style=flat-square
|
2017-01-24 18:41:07 +09:00
|
|
|
[himasaku]: https://himasaku.net
|
|
|
|
[himawari-badge]: https://img.shields.io/badge/%E5%8F%A4%E8%B0%B7-%E5%90%91%E6%97%A5%E8%91%B5-1684c5.svg?style=flat-square
|
|
|
|
[sakurako-badge]: https://img.shields.io/badge/%E5%A4%A7%E5%AE%A4-%E6%AB%BB%E5%AD%90-efb02a.svg?style=flat-square
|
2017-03-01 17:02:07 +09:00
|
|
|
|
|
|
|
<!-- Collaborators Info -->
|
|
|
|
[syuilo-link]: https://syuilo.com
|
|
|
|
[syuilo-icon]: https://avatars2.githubusercontent.com/u/4439005?v=3&s=70
|
|
|
|
[ayamorisawa-link]: https://github.com/ayamorisawa
|
|
|
|
[ayamorisawa-icon]: https://avatars0.githubusercontent.com/u/10798641?v=3&s=70
|
|
|
|
[otofune-link]: https://github.com/otofune
|
|
|
|
[otofune-icon]: https://avatars0.githubusercontent.com/u/15062473?v=3&s=70
|