A simple file hosting service.
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.
INSERT INTO user VALUES(
'username',
'$2a$10$8SAUmj17G24UlTQQ8gopquyZga.cUtawdbEcj5uLoPf0ZwjrIP9O6'
);
Run sudo npm install
and gulp
in the project root.
By default the configuration in config/default.json will be used. Custom configuration can be provided by making a config/custom.json file.