iceshrimp-legacy/README.md

116 lines
3.8 KiB
Markdown
Raw Normal View History

2016-12-28 23:49:51 +01:00
# Misskey
[![][travis-badge]][travis-link]
2016-12-30 13:38:00 +01:00
[![][appveyor-badge]][appveyor-link]
2016-12-28 23:49:51 +01:00
[![][dependencies-badge]][dependencies-link]
[![][mit-badge]][mit]
2017-01-18 07:48:36 +01:00
[![Sauce Test Status][saucelabs-image]][saucelabs-url]
2016-12-31 05:37:21 +01:00
Welcome!
2016-12-31 05:48:10 +01:00
Misskey is a completely open source, ultimately sophisticated new type of mini-blog based SNS.
2016-12-28 23:49:51 +01:00
2016-12-29 12:43:33 +01:00
![ss](./resources/ss.jpg)
2016-12-31 06:15:37 +01:00
## Features
* Automatically updated timeline
2016-12-31 06:11:31 +01:00
* Private chatting (messaging)
2016-12-31 06:15:49 +01:00
* Free 1GB storage
2016-12-31 06:11:31 +01:00
* Mobile device support (smartphone, tablet, etc)
2016-12-31 06:16:13 +01:00
* Thirdparty application support
2017-01-21 08:08:06 +01:00
* Link to Twitter
2016-12-31 06:11:31 +01:00
2017-01-02 21:28:54 +01:00
and more! You can touch with your own eyes at https://misskey.xyz/.
2016-12-31 06:11:31 +01:00
2016-12-31 06:12:15 +01:00
## Building
2016-12-30 23:18:06 +01:00
1. Install *git*, *Node.js* and *npm*
2016-12-30 18:44:45 +01: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-28 23:49:51 +01:00
2016-12-30 18:44:45 +01:00
## Test
2017-01-19 12:43:22 +01:00
Run `npm test` after building
2016-12-30 18:44:45 +01:00
## Setup
2016-12-30 23:06:38 +01:00
### Dependencies :package:
2016-12-30 18:47:45 +01:00
Please install these softwares.
2016-12-30 21:25:26 +01:00
* **[MongoDB](https://www.mongodb.com/)**
* **[Redis](https://redis.io/)**
* **[GraphicsMagick](http://www.graphicsmagick.org/)**
2016-12-30 23:06:38 +01:00
#### Optional
2016-12-31 05:05:15 +01:00
* [Elasticsearch](https://www.elastic.co/) - used to provide searching feature instead of MongoDB
2016-12-28 23:49:51 +01:00
2016-12-29 16:23:25 +01:00
### Domains
2016-12-28 23:49:51 +01: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-29 16:23:25 +01:00
### reCAPTCHA
2016-12-30 18:39:46 +01:00
Please visit https://www.google.com/recaptcha/intro/ and generate keys.
2016-12-29 16:23:25 +01:00
2016-12-30 22:58:52 +01:00
## Setup with Docker :whale:
2016-12-30 22:38:14 +01:00
Ensure that the working directory is the repository root directory.
To create misskey image:
2016-12-31 09:33:53 +01:00
2016-12-31 05:00:11 +01:00
`sudo docker build -t misskey ./docker`
2016-12-30 22:38:14 +01:00
To run misskey:
2016-12-31 09:33:53 +01:00
2016-12-30 22:38:14 +01:00
`sudo docker run --rm -i -t -p $PORT:80 -v $(pwd):/root/misskey -v $DBPATH:/data/db misskey`
2016-12-31 09:36:11 +01: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-30 22:38:14 +01:00
ex: `sudo docker run --rm -i -t -p 80:80 -v $(pwd):/root/misskey -v /data/db:/data/db misskey`
2016-12-31 09:33:53 +01:00
If you want to run misskey in production mode, add `--env NODE_ENV=production` like this:
2016-12-31 09:35:07 +01: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 09:33:53 +01:00
2016-12-31 09:36:11 +01:00
Note that `$(pwd)` is the working directory.
2016-12-30 22:38:14 +01:00
2016-12-28 23:49:51 +01:00
## Launch
2016-12-29 16:16:47 +01:00
`sudo npm start`
2016-12-28 23:49:51 +01:00
2016-12-30 19:50:21 +01:00
## Contribute
Do you have feature request or problem with Misskey?
2016-12-31 10:16:27 +01:00
Please create issue to report it if it is about the Misskey implementation itself.
2016-12-30 19:50:21 +01:00
Currently Misskey is missing documents so writing documents would be appreciated.
Pull requests are always welcome.
2016-12-30 20:02:01 +01:00
We love contributions from anybody.
2016-12-30 23:09:29 +01:00
[Contribution guide](./CONTRIBUTING.md)
2016-12-30 21:35:23 +01:00
### TODO
2016-12-30 23:15:48 +01:00
* More [tests](./test)!
* More [docs](./docs)!
2016-12-31 05:53:29 +01:00
* More cleaning up code!
2016-12-30 21:35:23 +01:00
2017-01-18 11:40:18 +01:00
## Collaborators
| ![syuilo](https://avatars2.githubusercontent.com/u/4439005?v=3&s=70) | ![Morisawa Aya](https://avatars0.githubusercontent.com/u/10798641?v=3&s=70)
|---|---|
| [syuilo](https://syuilo.com) | [Aya Morisawa](https://github.com/ayamorisawa)|
2017-01-01 18:17:53 +01:00
## Copyright
2017-01-19 12:44:19 +01:00
Misskey is an open-source software licensed under [The MIT License](LICENSE).
2016-12-28 23:49:51 +01: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 13:40:19 +01:00
[travis-badge]: http://img.shields.io/travis/syuilo/misskey.svg?style=flat-square&label=Linux
2016-12-30 13:38:00 +01:00
[appveyor-link]: https://ci.appveyor.com/project/syuilo/misskey
2016-12-30 13:40:19 +01:00
[appveyor-badge]: https://img.shields.io/appveyor/ci/syuilo/misskey/master.svg?style=flat-square&label=Windows
2016-12-28 23:49:51 +01:00
[dependencies-link]: https://gemnasium.com/syuilo/misskey
[dependencies-badge]: https://img.shields.io/gemnasium/syuilo/misskey.svg?style=flat-square
2017-01-18 07:48:36 +01:00
[saucelabs-image]: https://saucelabs.com/browser-matrix/syuilo.svg
[saucelabs-url]: https://saucelabs.com/u/syuilo