Skip to content

Back end of Innofund - A Crowdfunding Website Platform #02.15.16.31

Notifications You must be signed in to change notification settings

shihabshahriar16/innofund_server

Repository files navigation

Project description is given in 'Innofund.pdf'

Guidelines:

-> Install mysql locally in linux

sudo apt-get update sudo apt-get install mysql-server

-> Start local mysql

sudo systemctl start mysql

-> Auto start mysql on reboot

sudo systemctl enable mysql

->Start mysql shell and create user

sudo mysql -u root -p Enter Password:'' SET GLOBAL validate_password_policy=LOW; CREATE USER 'innofund'@'localhost' IDENTIFIED WITH 'mysql_native_password' BY 'innofund'; GRANT ALL PRIVILEGES ON * . * TO 'innofund'@'localhost'; FLUSH PRIVILEGES;

-> Create database for app

sudo mysql -u innofund -p Enter Password: 'innofund' CREATE DATABASE innofunddb;

-> use mysql with node

https://codeforgeek.com/nodejs-mysql-tutorial/

git init git add README.md git commit -m "first commit" git remote add origin https://github.com/shihabshahriar16/innofund_server.git git push -u origin master

remote mysql hosting

https://remotemysql.com

About

Back end of Innofund - A Crowdfunding Website Platform #02.15.16.31

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published