Code Monkey home page Code Monkey logo

w2f's Introduction

work2future

work2future survey app Developed by PayPal for Small Business Challenge

If running the server for the first, install the dependent node_modules: npm install

To start the server: npm start or node server.js

To access from localhost: http://localhost:8000

Database credential is stored in: config/config.json

Database schema: CREATE TABLE account ( account_number bigint(20) unsigned NOT NULL AUTO_INCREMENT, first_name varchar(64) DEFAULT '', last_name varchar(64) DEFAULT '', email varchar(127) NOT NULL DEFAULT '', language varchar(5) DEFAULT '', UNIQUE KEY account_number (account_number) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;

CREATE TABLE accountproperties ( account_number bigint(20) unsigned NOT NULL, name varchar(64) NOT NULL DEFAULT '', value varchar(64) NOT NULL DEFAULT '', PRIMARY KEY (account_number,name) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Questionairs and Content:

  • All questions and resources routes should be modified in data/surveyData.csv
  • All the corresponding text are localized in locale/US/en/localeMessages.properties, locale/US/es/localeMessages.properties, locale/US/vn/localeMessages.properties
  • Please note that new propertykey added to data/surveyData.csv should also defined in localeMessages.properties file. Also, propertykey is used in the analytic data (i.e. account_properties table).

w2f's People

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.