Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ts95/uploads
File hosting service
https://github.com/ts95/uploads
Last synced: about 2 months ago
JSON representation
File hosting service
- Host: GitHub
- URL: https://github.com/ts95/uploads
- Owner: ts95
- Created: 2015-11-15T19:37:55.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-16T12:27:01.000Z (almost 9 years ago)
- Last Synced: 2023-05-14T13:34:26.117Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
uploads
========
A simple file hosting service.## Users
The addition of new users is done manually by directly inserting a new user
into the database. The password field should contain a bcrypt hash.
e.g.
```sql
INSERT INTO user VALUES(
'username',
'$2a$10$8SAUmj17G24UlTQQ8gopquyZga.cUtawdbEcj5uLoPf0ZwjrIP9O6'
);
```## Dependencies
Run `sudo npm install` and `gulp` in the project root.## Configuration
By default the configuration in config/default.json will be used. Custom
configuration can be provided by making a config/custom.json file.