Literally completely recycled code. Midterms = laziness.
Access the app here: http://eecs-resume-book.herokuapp.com/
We still need S3 credentials, and its being hosted by me (Sidd) on my Heroku account, but let me know if H@B has its own Heroku, so I can transfer it over.
- Clone the repository or download and extract the files.
- Install Node.js if you haven't already.
- Go to the directory where index.js etc. are.
- Edit config.js if you wish to change the upload directory or the port number.
- Run the application using
node index.js
- Go to
http://<IP_ADDRESS>:<PORT>
where<IP_ADDRESS>
is the IP address of the machine where the application is running and the<PORT>
is the port number defined inconfig.js
which is8000
by default. - Drag and drop files to the marked area to upload the files to the
upload_dir
defined inconfig.js
.
To use with AWS S3:
- Install knox using
npm install knox
. - Edit config.js to fill in the values for the keys
key
,secret
andbucket
, and replace the last line withexports.s3_enabled = true;
.
This application is released under the MIT License. See the LICENSE
file for details.