24
1
Fork 0

rename to 'send'

This commit is contained in:
Danny Coates 2017-07-11 12:34:49 -07:00
parent 57c7c475fc
commit 20b9766742
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
10 changed files with 26 additions and 26 deletions

View File

@ -1,6 +1,6 @@
# Firefox Fileshare
# Firefox Send
[![CircleCI](https://circleci.com/gh/mozilla/something-awesome.svg?style=svg)](https://circleci.com/gh/mozilla/something-awesome)
[![CircleCI](https://circleci.com/gh/mozilla/send.svg?style=svg)](https://circleci.com/gh/mozilla/send)
## What it does
@ -29,11 +29,11 @@ $ redis-server /usr/local/etc/redis.conf
## Localization
_Coming soon_ (see [#57](https://github.com/mozilla/something-awesome/issues/57))
_Coming soon_ (see [#57](https://github.com/mozilla/send/issues/57))
## Contributing
Pull requests are always welcome! Feel free to check out the list of ["good first bugs"](https://github.com/mozilla/something-awesome/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+bug%22).
Pull requests are always welcome! Feel free to check out the list of ["good first bugs"](https://github.com/mozilla/send/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+bug%22).
## Testing

View File

@ -10,5 +10,5 @@
## Example:
```sh
$ docker run --net=host -e 'NODE_ENV=production' -e 'P2P_S3_BUCKET=testpilot-p2p-dev' -e 'P2P_REDIS_HOST=dyf9s2r4vo3.bolxr4.0001.usw2.cache.amazonaws.com' mozilla/portal:latest
$ docker run --net=host -e 'NODE_ENV=production' -e 'P2P_S3_BUCKET=testpilot-p2p-dev' -e 'P2P_REDIS_HOST=dyf9s2r4vo3.bolxr4.0001.usw2.cache.amazonaws.com' mozilla/send:latest
```

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{
"name": "portal-alpha",
"name": "firefox-send",
"version": "0.1.2",
"lockfileVersion": 1,
"dependencies": {

View File

@ -1,5 +1,5 @@
{
"name": "portal-alpha",
"name": "firefox-send",
"description": "File Sharing Experiment",
"version": "0.1.2",
"author": "Mozilla (https://mozilla.org)",
@ -40,17 +40,17 @@
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/mozilla/something-awesome/",
"homepage": "https://github.com/mozilla/send/",
"license": "MPL-2.0",
"repository": "mozilla/something-awesome",
"repository": "mozilla/send",
"scripts": {
"predocker": "browserify frontend/src/main.js | uglifyjs > public/bundle.js && npm run version",
"dev": "npm run version && watchify frontend/src/main.js -o public/bundle.js -d | node server/portal_server",
"dev": "npm run version && watchify frontend/src/main.js -o public/bundle.js -d | node server/server",
"format": "prettier '{frontend/src/,scripts/,server/,test/}*.js' 'public/*.css' --single-quote --write",
"lint": "npm-run-all lint:*",
"lint:css": "stylelint 'public/*.css'",
"lint:js": "eslint .",
"start": "node server/portal_server",
"start": "node server/server",
"test": "mocha test/unit && mocha test/server",
"version": "node scripts/version"
}

View File

@ -2,16 +2,16 @@
"name": "firefox-send",
"description": "File Sharing Experiment",
"repository": {
"url": "https://github.com/mozilla/something-awesome/",
"url": "https://github.com/mozilla/send/",
"license": "MPL-2.0"
},
"participate": {
"home": "https://github.com/mozilla/something-awesome/blob/master/README.md",
"docs": "https://github.com/mozilla/something-awesome/blob/master/README.md"
"home": "https://github.com/mozilla/send/blob/master/README.md",
"docs": "https://github.com/mozilla/send/blob/master/README.md"
},
"bugs": {
"list": "https://github.com/mozilla/something-awesome/issues",
"report": "https://github.com/mozilla/something-awesome/issues/new"
"list": "https://github.com/mozilla/send/issues",
"report": "https://github.com/mozilla/send/issues/new"
},
"urls": {
"prod": "https://send.firefox.com/",

View File

@ -3,7 +3,7 @@ const conf = require('./config.js');
const isProduction = conf.env === 'production';
const mozlog = require('mozlog')({
app: 'FirefoxFileshare',
app: 'FirefoxSend',
level: isProduction ? 'INFO' : 'verbose',
fmt: isProduction ? 'heka' : 'pretty',
debug: !isProduction

View File

@ -16,7 +16,7 @@ if (conf.sentry_dsn) {
const mozlog = require('./log.js');
const log = mozlog('portal.server');
const log = mozlog('send.server');
const STATIC_PATH = path.join(__dirname, '../public');
@ -154,7 +154,7 @@ app.post('/delete/:id', (req, res) => {
app.post('/upload', (req, res, next) => {
const newId = crypto.randomBytes(5).toString('hex');
let meta;
try {
meta = JSON.parse(req.header('X-File-Metadata'));
} catch(err) {
@ -202,7 +202,7 @@ app.get('/__version__', (req, res) => {
});
const server = app.listen(conf.listen_port, () => {
log.info('startServer:', `Portal app listening on port ${conf.listen_port}!`);
log.info('startServer:', `Send app listening on port ${conf.listen_port}!`);
});
const validateID = route_id => {
@ -216,4 +216,4 @@ const validateIV = route_id => {
module.exports = {
server: server,
storage: storage
}
}

View File

@ -7,7 +7,7 @@ const path = require('path');
const mozlog = require('./log.js');
const log = mozlog('portal.storage');
const log = mozlog('send.storage');
const redis = require('redis');
const redis_client = redis.createClient({

View File

@ -24,11 +24,11 @@ describe('Server integration tests', function() {
let fileId;
before(function() {
const app = proxyquire('../../server/portal_server', {
const app = proxyquire('../../server/server', {
'./log.js': function() {
return logStub;
}
});
});
server = app.server;
storage = app.storage;
@ -167,4 +167,4 @@ describe('Server integration tests', function() {
.then(() => assert.fail())
.catch(err => assert(1))
})
});
});

View File

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Firefox Fileshare</title>
<title>Firefox Send</title>
{{#if dsn}}
{{> sentry dsn=dsn}}
{{/if}}