Thanks to visit codestin.com
Credit goes to github.com

Skip to content

arc9693/Reunion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reunion (beta stage)

Reunion is an app based upon Node.js and EJS templating engine.Targetted to build a social platform where people can find each other.

Features

  • Login/Registration system.

Tech

  • node.js - evented I/O for the backend
  • Express - node.js framework
  • EJS - templating engine
  • MySql - database system

Installation

Setting up the database
  • Create database Reunion
  • Create table users
CREATE TABLE `users` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `first_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
 `last_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
 `email` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
 `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
 `created` datetime NOT NULL,
 `modified` datetime NOT NULL,
 `coupons` varchar(255),
 PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

  • Create user and set the password for it and grant privilages on the database Reunion.
CREATE USER 'GUEST'@'localhost' IDENTIFIED BY 'GUEST123';
Setting up the app and server
  • Install the dependencies and devDependencies and start the server.
$ cd Reunion
$ npm install -d
$ npm start
  • Open localhost:3030

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published