A simple file sharing site with an easy to use API and online panel.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415161718192021222324252627282930313233343536
  1. [![Build Status][build-image]][build-url] [![Coverage Status][coverage-image]][coverage-url]
  2. # Shrimpa
  3. Shrimpa is an easy to use file sharing website. It's easy to integrate shrimpa into
  4. most 3rd party utilities with the use of its RESTful API. The web panel gives users the
  5. means to manage their uploaded content and various other useful utilities.
  6. ## Installation
  7. Clone the latest release locally:
  8. ```bash
  9. $ git clone https://github.com/Foltik/Shrimpa
  10. ```
  11. Next, install dependencies and build into `public/` with `npm`:
  12. ```bash
  13. $ npm install
  14. $ npm run build
  15. ```
  16. Finally, start the Node.js server with:
  17. ```bash
  18. $ npm start
  19. ```
  20. Or optionally, monitor the source files, rebuilding and restarting the server
  21. whenever changes are made with `nodemon` for easy live development:
  22. ```bash
  23. $ npm run watch
  24. ```
  25. ## Other Notes
  26. In order to contribute, please read the [Contributing](CONTRIBUTING.md) file.
  27. [build-image]: https://travis-ci.com/Foltik/Shrimpa.svg?branch=master
  28. [build-url]: https://travis-ci.com/Foltik/Shrimpa
  29. [coverage-image]: https://img.shields.io/codecov/c/github/Foltik/shrimpa/master.svg
  30. [coverage-url]: https://codecov.io/gh/Foltik/Shrimpa