2016-12-29 07:49:51 +09:00
|
|
|
# Misskey
|
|
|
|
[![][travis-badge]][travis-link]
|
2016-12-30 21:38:00 +09:00
|
|
|
[![][appveyor-badge]][appveyor-link]
|
2016-12-29 07:49:51 +09:00
|
|
|
[![][dependencies-badge]][dependencies-link]
|
|
|
|
[![][mit-badge]][mit]
|
|
|
|
|
2017-01-18 15:48:36 +09:00
|
|
|
[![Sauce Test Status][saucelabs-image]][saucelabs-url]
|
|
|
|
|
2016-12-31 13:37:21 +09:00
|
|
|
Welcome!
|
|
|
|
|
2016-12-31 13:48:10 +09:00
|
|
|
Misskey is a completely open source, ultimately sophisticated new type of mini-blog based SNS.
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2016-12-29 20:43:33 +09:00
|
|
|
![ss](./resources/ss.jpg)
|
|
|
|
|
2016-12-31 14:15:37 +09:00
|
|
|
## Features
|
|
|
|
* Automatically updated timeline
|
2016-12-31 14:11:31 +09:00
|
|
|
* Private chatting (messaging)
|
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)
|
2016-12-31 14:16:13 +09:00
|
|
|
* Thirdparty application support
|
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
|
|
|
|
2016-12-31 14:12:15 +09:00
|
|
|
## Building
|
2016-12-31 07:18:06 +09:00
|
|
|
1. Install *git*, *Node.js* and *npm*
|
2016-12-31 02:44:45 +09:00
|
|
|
2. `git clone git://github.com/syuilo/misskey.git`
|
|
|
|
3. `cd misskey`
|
|
|
|
4. `npm install`
|
|
|
|
5. `npm run config`
|
|
|
|
6. `npm run build`
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2016-12-31 02:44:45 +09:00
|
|
|
## Test
|
2017-01-17 07:51:27 +09:00
|
|
|
ビルドしてから:
|
2016-12-31 02:44:45 +09:00
|
|
|
`npm test`
|
|
|
|
|
|
|
|
## Setup
|
2016-12-31 07:06:38 +09:00
|
|
|
### Dependencies :package:
|
2016-12-31 02:47:45 +09:00
|
|
|
Please install these softwares.
|
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.**
|
|
|
|
|
2016-12-30 00:23:25 +09:00
|
|
|
### reCAPTCHA
|
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
|
|
|
|
2016-12-31 06:58:52 +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
|
|
|
|
2016-12-29 07:49:51 +09:00
|
|
|
## Launch
|
2016-12-30 00:16:47 +09:00
|
|
|
`sudo npm start`
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2016-12-31 03:50:21 +09:00
|
|
|
## Contribute
|
|
|
|
Do you have feature request or problem with Misskey?
|
2016-12-31 18:16:27 +09:00
|
|
|
Please create issue to report it if it is about the Misskey implementation itself.
|
2016-12-31 03:50:21 +09:00
|
|
|
|
|
|
|
Currently Misskey is missing documents so writing documents would be appreciated.
|
|
|
|
Pull requests are always welcome.
|
|
|
|
|
2016-12-31 04:02:01 +09:00
|
|
|
We love contributions from anybody.
|
|
|
|
|
2016-12-31 07:09:29 +09:00
|
|
|
[Contribution guide](./CONTRIBUTING.md)
|
|
|
|
|
2016-12-31 05:35:23 +09:00
|
|
|
### TODO
|
2016-12-31 07:15:48 +09:00
|
|
|
* More [tests](./test)!
|
|
|
|
* More [docs](./docs)!
|
2016-12-31 13:53:29 +09:00
|
|
|
* More cleaning up code!
|
2016-12-31 05:35:23 +09:00
|
|
|
|
2017-01-02 02:17:53 +09:00
|
|
|
## Copyright
|
2017-01-02 02:18:23 +09:00
|
|
|
Misskey is 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
|
2016-12-30 21:40:19 +09:00
|
|
|
[travis-badge]: http://img.shields.io/travis/syuilo/misskey.svg?style=flat-square&label=Linux
|
2016-12-30 21:38:00 +09:00
|
|
|
[appveyor-link]: https://ci.appveyor.com/project/syuilo/misskey
|
2016-12-30 21:40:19 +09:00
|
|
|
[appveyor-badge]: https://img.shields.io/appveyor/ci/syuilo/misskey/master.svg?style=flat-square&label=Windows
|
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-18 15:48:36 +09:00
|
|
|
[saucelabs-image]: https://saucelabs.com/browser-matrix/syuilo.svg
|
|
|
|
[saucelabs-url]: https://saucelabs.com/u/syuilo
|