You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
idoctnef a7af78a6cb arrayObjectIndexOf, and some details 8 years ago
controllers arrayObjectIndexOf, and some details 8 years ago
models arrayObjectIndexOf, and some details 8 years ago
.gitignore server and app commited in different repositories 8 years ago
LICENSE Initial commit 8 years ago
README.md arrayObjectIndexOf, and some details 8 years ago
config.js post with token runs now 8 years ago
package.json post with token runs now 8 years ago
server.js travel comments system added 8 years ago

README.md

#CollectiveCar app

frontend app code: https://github.com/idoctnef/collectivecarApp

Backend: Nodejs + Express + MongoDB

Frontend: Angularjs + Ionic + MaterialDesign

##To Do List: Backend and Frontend:

-signup user	                    		--> done
-loggin user	                    		--> done
-update user profile                 	--> done
-create new travel	                 	--> done
-update travel		                  	--> done
-delete travel		                  	--> done
-create offeringCar                 	--> done
-update offeringCar
-delete offeringCar
-create askingForTravel (needtravel)  --> done
-update askingForTravel
-delete askgingForTravel
-create askingPackage (need transport package)  --> done
-update askingPackage
-delete askgingPackage
-user joins a car                     --> done
-user offer car to a travel           --> done
-user offer car to a askingpackage    --> done
-user unjoins a car                   
-user unoffer car to a travel         
-user unoffer car to a askingpackage  
-comment publication(car, travel, package)    --> done

-web page (webapp)

####PARA LA BASE DE DATOS [para definir como queremos q esté estructurado, pensando en las funcionalidades que queremos tener]:

var userSchema = new Schema({
    username: { type: String },
    password: { type: String },
    description:   { type: String },
    avatar:   { type: String },
    mail:   { type: String },
    phone: { type: String },
    telegram: { type: String }
})
var travelSchema = new Schema({
    title: { type: String },
    description: { type: String },
    owner:   { type: String },
    from: { type: String },
    to: { type: String },
    date: { type: Date },
    periodic: { type: Boolean },
    generateddate: { type: Date },
    seats: { type: Number },
    package: { type: Boolean },
    icon: { type: String },
    phone: { type: Number },
    telegram: { type: String },
    collectivized: { type: Boolean },
    modality: { type: String } //if is an offering travel or asking for travel
})
var joinSchema = new Schema({
    travelId: { type: String },
    joinedUserId: { type: String },
    joinedUsername: { type: String },
    acceptedUserId: { type: String },
    joinedAvatar: { type: String }

});
var commentSchema = new Schema({
    travelId: { type: String },
    commentUserId: { type: String },
    commentUsername: { type: String },
    comment: { type: String },
    commentAvatar: { type: String }

});

####RESOURCES using:

car icons http://www.flaticon.com/packs/transportation-7

css para la app: matterializeCSS http://materializecss.com/

avatars users: http://www.flaticon.com/packs/animal-icon-collection

mirar per fer hash de passwords https://www.npmjs.com/package/bcrypt-nodejs