Skip to content

IOT based Waste Management System for Smart Cities

License

Notifications You must be signed in to change notification settings

shubhajitml/ecobin

Repository files navigation

ecobin

IOT based Waste Management System for Smart Cities

  1. put the ecobin folder in var/www/html/(for linux) or   C:\wamp\www\ or  C:\xampp\htdocs\ (for Windows)
  2. change the username(phpmyadmin) and password(1235) in connection.php with your credentials
  3. create a database named ecobin and import the ecobin.sql file

you are all set to go!!

Note: sensor_data.php is being used for receiving remote data
user name: shubhajitdas121@gmail.com
password: 1235

Basic GIT commands:

0. Pull from remotegit pull

1. Check status:  git status

2. Add all unstaged Files:   git add .

or 2. Add specific unstaged Filesgit add sensor_data.php

3. Commit the Staged files (a message is mandatory) :   git commit "your message here (e.g. sensor_data script added)"

4. Push the Staged Files (this will ask for authentication)git push

Using GIT for the first time: (optional)

0. Create a remote, empty repository on Github:   Login into github, Create an empty repo and copy the url (clone/download) 
1. Initialize the local repo:  Goto your project directory and type   git init

2. Connect to remotegit remote add origin https://github.com/shubhajitml/ecobin.git

3. Push your branch to Github:   git push origin master