FoundKey/README.md

153 lines
5.1 KiB
Markdown
Raw Normal View History

2017-03-29 23:57:42 +00:00
![Misskey](./assets/title.png)
2017-02-22 11:19:34 +00:00
================================
2016-12-28 22:49:51 +00:00
[![][travis-badge]][travis-link]
[![][dependencies-badge]][dependencies-link]
2017-01-24 09:41:07 +00:00
[![][himawari-badge]][himasaku]
[![][sakurako-badge]][himasaku]
2017-02-26 19:02:24 +00:00
[![][mit-badge]][mit]
2017-01-24 09:41:07 +00:00
2017-02-22 11:19:34 +00:00
[Misskey](https://misskey.xyz) is a completely open source,
ultimately sophisticated new type of mini-blog based SNS.
2016-12-28 22:49:51 +00:00
2017-03-22 07:19:32 +00:00
![ss](./assets/ss.jpg)
2016-12-29 11:43:33 +00:00
2017-02-22 11:19:34 +00:00
Key features
--------------------------------
2016-12-31 05:15:37 +00:00
* Automatically updated timeline
2017-02-27 09:16:01 +00:00
* Private messages
2016-12-31 05:15:49 +00:00
* Free 1GB storage
2016-12-31 05:11:31 +00:00
* Mobile device support (smartphone, tablet, etc)
2017-03-27 10:00:51 +00:00
* Web API for third-party applications
2017-02-27 05:31:38 +00:00
* Twitter integration
2016-12-31 05:11:31 +00:00
2017-01-02 20:28:54 +00:00
and more! You can touch with your own eyes at https://misskey.xyz/.
2016-12-31 05:11:31 +00:00
2017-02-22 11:19:34 +00:00
Setup
--------------------------------
2016-12-30 22:06:38 +00:00
### Dependencies :package:
2016-12-30 17:47:45 +00:00
Please install these softwares.
2017-02-22 11:19:34 +00:00
* *Node.js* and *npm*
2016-12-30 20:25:26 +00:00
* **[MongoDB](https://www.mongodb.com/)**
* **[Redis](https://redis.io/)**
* **[GraphicsMagick](http://www.graphicsmagick.org/)**
2016-12-30 22:06:38 +00:00
#### Optional
2016-12-31 04:05:15 +00:00
* [Elasticsearch](https://www.elastic.co/) - used to provide searching feature instead of MongoDB
2016-12-28 22:49:51 +00:00
2016-12-29 15:23:25 +00:00
### Domains
2016-12-28 22:49:51 +00: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-20 22:34:14 +00:00
#### Subdomains
2017-02-22 11:19:34 +00:00
Note that Misskey uses following subdomains:
2017-02-20 22:34:14 +00:00
* **api**.*{primary domain}*
* **auth**.*{primary domain}*
* **about**.*{primary domain}*
* **dev**.*{primary domain}*
* **file**.*{secondary domain}*
2017-02-14 15:44:07 +00:00
2017-02-22 11:19:34 +00:00
### reCAPTCHA tokens
2016-12-30 17:39:46 +00:00
Please visit https://www.google.com/recaptcha/intro/ and generate keys.
2016-12-29 15:23:25 +00:00
2017-02-22 11:19:34 +00:00
Setup with Docker :whale:
--------------------------------
2016-12-30 21:38:14 +00:00
Ensure that the working directory is the repository root directory.
To create misskey image:
2016-12-31 08:33:53 +00:00
2016-12-31 04:00:11 +00:00
`sudo docker build -t misskey ./docker`
2016-12-30 21:38:14 +00:00
To run misskey:
2016-12-31 08:33:53 +00:00
2016-12-30 21:38:14 +00:00
`sudo docker run --rm -i -t -p $PORT:80 -v $(pwd):/root/misskey -v $DBPATH:/data/db misskey`
2016-12-31 08:36:11 +00: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 21:38:14 +00:00
ex: `sudo docker run --rm -i -t -p 80:80 -v $(pwd):/root/misskey -v /data/db:/data/db misskey`
2016-12-31 08:33:53 +00:00
If you want to run misskey in production mode, add `--env NODE_ENV=production` like this:
2016-12-31 08:35:07 +00: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 08:33:53 +00:00
2016-12-31 08:36:11 +00:00
Note that `$(pwd)` is the working directory.
2016-12-30 21:38:14 +00:00
2017-02-28 11:18:51 +00:00
Install
2017-02-22 11:19:34 +00:00
--------------------------------
2017-02-28 11:59:01 +00:00
### Using built code
2017-04-04 11:54:37 +00:00
We have official release of Misskey.
The built code is automatically pushed to https://github.com/syuilo/misskey/tree/release after the CI test succeeds.
2017-03-14 08:17:04 +00:00
2017-02-28 11:59:01 +00:00
1. `git clone -b release git://github.com/syuilo/misskey.git`
2017-02-28 12:23:57 +00:00
2. `cd misskey`
3. `npm install`
2017-02-28 11:18:51 +00:00
2017-02-28 11:59:01 +00:00
#### Update
2017-03-01 08:47:22 +00:00
1. `git fetch`
2. `git reset --hard origin/release`
3. `npm install`
2017-02-28 11:59:01 +00:00
### Using source code
2017-05-17 01:37:10 +00:00
If you want to build Misskey manually, you can do it via `build` command after download the source code of Misskey and install dependencies:
2017-05-17 01:32:44 +00:00
2017-02-28 11:59:01 +00:00
1. `git clone -b master git://github.com/syuilo/misskey.git`
2017-02-28 12:23:57 +00:00
2. `cd misskey`
3. `npm install`
4. `npm run build`
2017-02-22 11:19:34 +00:00
2017-02-28 11:59:01 +00:00
#### Update
2017-03-01 08:47:22 +00:00
1. `git pull origin master`
2. `npm install`
3. `npm run build`
2017-02-28 11:59:01 +00:00
2017-02-22 11:19:34 +00:00
Launch
--------------------------------
2017-03-26 13:16:42 +00:00
Just `sudo npm start`. GLHF!
2017-02-28 11:18:51 +00:00
2017-02-22 11:19:34 +00:00
Testing
--------------------------------
Run `npm test` after building
Debugging :bug:
--------------------------------
2017-02-28 12:01:01 +00:00
### Show debug messages
2017-02-28 11:59:15 +00:00
Misskey uses [debug](https://github.com/visionmedia/debug) and the namespace is `misskey:*`.
2017-01-23 09:25:52 +00:00
2017-03-26 12:32:19 +00:00
Contribution
2017-02-22 11:19:34 +00:00
--------------------------------
2017-03-26 12:32:19 +00:00
Please see [Contribution guide](./CONTRIBUTING.md).
2016-12-30 20:35:23 +00:00
2017-02-22 11:19:34 +00:00
Collaborators
------------------------------
2017-03-01 08:02:07 +00: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 10:40:18 +00:00
2017-02-22 11:19:34 +00:00
Copyright
------------------------------
2017-01-19 11:44:19 +00:00
Misskey is an open-source software licensed under [The MIT License](LICENSE).
2016-12-28 22:49:51 +00: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-26 16:46:43 +00:00
[travis-badge]: http://img.shields.io/travis/syuilo/misskey/master.svg?style=flat-square
2016-12-28 22:49:51 +00:00
[dependencies-link]: https://gemnasium.com/syuilo/misskey
[dependencies-badge]: https://img.shields.io/gemnasium/syuilo/misskey.svg?style=flat-square
2017-01-24 09:41:07 +00: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 08:02:07 +00: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