A simple file sharing site with an easy to use API and online panel.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

5 anos atrás
2 anos atrás
6 anos atrás
2 anos atrás
6 anos atrás
5 anos atrás
2 anos atrás
5 anos atrás
2 anos atrás
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