UH Bazaar is a Meteor application that aims to provide a localized marketplace for the University of Hawaii at Manoa community, which accomadates buying, selling and trading goods. UH Bazaar aims to provide a comfortable experience for students by keeping the exchanges on campus and between students. With the tides of incoming and outgoing students, whether graduating or just returning home for the summer, there is a wealth of commodity in need of a custom tailored facilitation to manage exchange. To help facilitate secure exchange, UH Bazaar intends to implement the UH CAS login system to enforce student-student interaction, as well as a goods map for convenient navigation on campus.
This landing page is to be implemented as a type of ‘flyer’ for informing users about what exactly our application is, as well as containing informaition on functionality and a projected date for a beta release. Meteor Galaxy will be the means through which the application will be hosted, the hope is to have the application hosted as soon as possible. Updates are to follow.
From here the user can can log in, or choose to become a member.
If a user visits their account page and they don’t have any items, a button appears, linking to the create an item page!
When editing, the current data is displayed to the user in the text boxes.
From here, users can browse other profiles and see what people are trying to get rid of!
The new item page allows a user to create a listing for an item / service.
A simple way to look at what users have to offer.
Here, the user can sort the items by title, date or price. A convenient sidebar allows for fast and efficient transitioning through categories!
A fast and efficient way to see if an item is available through UH Bazaar.
An admin has access to editing and deleting all database documents on the application
Uh Bazaar was tested by a handful of students from UH Manoa, here’s what they had to say…
Shawn M.
Easy to Follow the onscreen prompts, nice site design. Categories page makes it easy to look for items. Maybe create a confirmation page after completing the creation of account. A page with featured items would be appealing. Expand the homepage; more explanation to potential customers.
Ramsey A.
The website is easy to navigate, the transitions between pages are smooth, easy to read font and size. No popping or distracting colors, plain and simple. Maybe make the menu bar a bit more noticeable, greet the customer after login screen.
Ilm M.
The webpage is smooth all over, it’s easy to access the tabs. Nice background! Maybe make the menu bar bigger and eye popping to get attention, more colors.
Aaron B. had this to say:
UH Bazaar was user-friendly and quick to learn. Everything is straightforward making navigation and posting easy. I can’t wait to see it functioning with more members. Truly an ingenious idea, combining the college student lifestyle with practicality to streamline a campus need.
Development for this project aims to adhere to the structure of Issue Driven Project Management practices. This is basically a sequence of milestones consisting of a practical set of issues to tackle in a given time frame. The following documents the history of UH Bazaar’s milestones.
This milestone began on November 6th, 2018 and was completed on Novemeber 14th, 2018.
The main goal in milestone 1 is to complete mockups for a series of pages in UH Bazaar. Development was done using Semantic UI React within a Meteor application. The intial goal was to create mockups of a base set of application pages that would allow for functional site in minimal time. This included
Milestone 2 realized most of the basic functionaloty expected out of UH Bazaar. The application became a minimum viable product for user testing.
Milestone 2 began on Novemeber 15, 2018 and was completed on November 28, 2018.
This milestone aims to go beyond basic functionality, incorporating more refined characteristics in terms of privacy and usability, as well as implementing additional features.
Milestone 3 began on November 29, 2018 and was completed on December 6, 2018.
First, install meteor
Second, Fork us on github! and clone the repo to your favorite laptop.
Once in the main directory simply…
cd app
After which you will need to install the required node libraries…
meteor npm intall
…as well as the following for the confirm box module…
npm install react-confirm-alert --save
The first time starting the app intializes some default data. The output should look something like this…
meteor npm run start
> meteor-application-template-react@ start /Users/admin/github/uhbazaar/uhbazaar/app
> meteor --no-release-check --settings ../config/settings.development.json
[[[[[ ~/github/uhbazaar/uhbazaar/app ]]]]]
=> Started proxy.
=> Started MongoDB.
I20181123-20:41:23.009(-10)? Creating the default user(s)
I20181123-20:41:23.026(-10)? Creating user admin@foo.com.
I20181123-20:41:23.027(-10)? Creating user john@foo.com.
I20181123-20:41:23.027(-10)? Creating default data.
I20181123-20:41:23.027(-10)? Adding: Basket (john@foo.com)
I20181123-20:41:23.027(-10)? Adding: Bicycle (john@foo.com)
I20181123-20:41:23.027(-10)? Adding: Banana (admin@foo.com)
I20181123-20:41:23.027(-10)? Adding: Boogie Board (admin@foo.com)
I20181123-20:41:23.027(-10)? Creating default users.
I20181123-20:41:23.027(-10)? Adding: G (john@foo.com)
I20181123-20:41:23.027(-10)? Adding: Waters (admin@foo.com)
I20181123-20:41:23.027(-10)? Creating default Categories.
I20181123-20:41:23.027(-10)? Adding: Books (book)
I20181123-20:41:23.028(-10)? Adding: Furniture (bed)
I20181123-20:41:23.028(-10)? Adding: Vehicles (truck)
I20181123-20:41:23.028(-10)? Adding: Personals (heart)
I20181123-20:41:23.028(-10)? Adding: Free (circle)
I20181123-20:41:23.028(-10)? Adding: Housing (home)
I20181123-20:41:23.028(-10)? Adding: Pets (sticker mule)
...
(other data)
...
=> Started your app.
Tips regarding Bcrypt warning. The following message will display when you run this app…
Note: you are using a pure-JavaScript implementation of bcrypt.
While this implementation will work correctly, it is known to be
approximately three times slower than the native implementation.
In order to use the native implementation instead, run
meteor npm install --save bcrypt
in the root directory of your application.
Installing bcrypt can lead to some real headaches if your using a Windows machine. If your running macOS or Linux, your windows friends will stop talking to you. Bcrypt doesn’t tell you this, but I will. Bcrypt is only used in Meteor for password checking, meaning performance impacts are not at all noticeable with a small user-base.
That’s it! You are now ready to start contributing to UH Bazaar!
git remote add upstream "url of your organizations main repo"
git remote set-url origin "url of your forked repo"
git remote -v
origin https://github.com/zakgilbert/uhbazaar.github.io.git (fetch)
origin https://github.com/zakgilbert/uhbazaar.github.io.git (push)
upstream https://github.com/uhbazaar/uhbazaar.github.io.git (fetch)
upstream https://github.com/uhbazaar/uhbazaar.github.io.git (push)
-First create an issue in your organizations github project repo.
git checkout master //switch to master branch
git pull --rebase upstream master
git push -f origin master
git branch pull-request-Issue-"insert issue number"
git checkout pull-request-Issue-"insert issue number"
git push origin "branch name"
Now access your organizations main repo and create a pull request.
#17252a
#2b7a78
#3aafa9
#def2f1
#feffff
Wyatt Hoodes is a computer science major pursuing his bachelor of science degree. Hoodes enjoys a clever hack in C and is currently expanding into C++, with eyes on the rich reservoir of python libraries as well. He is comfortable with the Java API, but doesn’t like how Java has occasionaly lied (think ‘pass by reference’). Hoodes has recently garnered a fascination with functional programming, and the elegance a functional approach provides in tackling problems. In regards to UH Bazaar, his thoughts are:
I’m excited to hone my software engineering skills, while gaining valuable experience regarding team dynamics in software design and implementation. An added bonus is doing this all in conjunction with open-source development paradigms.
Zak Gilbert is currently seeking a bachelors in computer science from the University of Hawaii at Manoa. Gilbert has an intermediate background in the Java and C programming languages, and enjoys surfing and solving interview problems in his free time.
For the UH Bazaar web app I plan to develop it as a formidable piece of software so that I may include it in my resume with confidence, at the same time I plan to hone my grasp on web development and team management.
Leah-Mei Villanueva is a computer science major pursuing her bachelor of science degree. Villanueva has experience in Java and Javascript. Recently, she has obtained an interest in software engineering, in which she seeks to expand her knowledge and skills.
I am determined to expand my knowledge and use what I have learned to gain the confidence I need to be able to be more creative and exceed my own expectations. This experience of working in a team, not only pushes me to become less introverted, but also gives me an oppurtunity to progress in team management, cooperation, and social skills.
Michael Boyle is a computer science major pursuing his bachelor of science degree. Boyle has experience in Java, iOS Development, and Javascript along with other web development tools. He has published a simple game to the iOS App Store and has completed two internships with Underwriters Laboratories. Recently, Boyle has taken interest in ethical hacking and artificial intelligence and hopes to expand his knowledge in the near future. In regards to UH Bazaar, his thoughts are:
I’m eager to put what I have learned to the test and create something worthwhile. The learning process is rigorous and finally being able to push your limits and use some creativity is very welcomed. Most importantly, however, I will get my first true experience working in a productive team setting.