GoPro16 / SnapMail-Backend

SnapMail is an App for IOS that allows users to take pictures and email it in PDF Format.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SnapMail-Backend

SnapMail is a simple tool for taking pictures and emailing it to yourself in PDF format. The intended use is for school/homework to study for exams. It makes it simple to take a few pictures of notes and the app will convert the images to a PDF document and email it to whatever email is specified. This project contains the backend server side of the app. For frontend view https://github.com/jdanek4/SnapMail-Frontend

Installation

$ npm install

Open the server.js file and if the app doesn't work on the default port 3000, then change the code like so:

models.sequelize.sync({force: false}).then(function () {
  var server = app.listen(process.env.PORT,process.env.IP, function() {
    console.log('Express server listening');
  });
});

Usage

Run the App:

$ npm start

Go To local address for control panel

localhost:3000/

About

SnapMail is an App for IOS that allows users to take pictures and email it in PDF Format.


Languages

Language:JavaScript 100.0%