This commit is contained in:
David Flanagan 2016-05-16 16:58:09 -07:00
Родитель f06bdc945b
Коммит 78b1b65576
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -6,14 +6,14 @@ Running it should be as simple as issuing these commands on your
server:
```
> git clone git@github.com:mozilla/speecher.git
> cd speecher
> git clone git@github.com:mozilla/murmur.git
> cd murmur
> npm install
> emacs server.conf # define hostname and email address for letsencrypt
> mkdir uploads # create a directory for audio uploads
> emacs sentences.txt # add some sentences to the config file
> screen # do this so the server will run after logout
> sudo node speecher.js # start the server
> sudo node murmur.js # start the server
```
For cloud services like AWS, you may also need to take steps to open

Просмотреть файл

@ -1,12 +1,12 @@
{
"name": "speecher",
"name": "murmur",
"version": "1.0.0",
"description": "collect recorded speech samples from users",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/speecher"
"url": "https://github.com/mozilla/murmur"
},
"main": "speecher.js",
"main": "murmur.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},