R10. GitHub repository: https://github.com/GregM1991/mArtketplace
R9. Deployed app: https://martketplace.herokuapp.com/
Art is the universal language. Everyone across the globe recognises and understands to a degree, graphical images. Especially with the recent events of covid-19, people need now more than ever, an area in which they can access artwork and prints, to lift their spirits and boost their home office moods. There is a gap in the market for an application that allows for buying and swapping of artworks online. At the moment there are plenty of websites out there (Society6 and RedBubble for example) that allow for purchase of an artwork, but it doesn't allow for users to post their own artwork, unless they themselves have created it.
This is where my two way marketplace app, mArtketplace, comes in. People can post their very own prints and artworks on the mArtketplace allowing for others to view and contact for buying of that art. Without this mArtketplace application, there's no centralised online presence for people to sell the prints that they own, as well as in the same swift visit, buy another persons print that they are selling.
People can post their very own prints and artworks on the mArtketplace allowing for others to view and contact for buying of that art.
- Users can create an account.
- They can view the range of listings.
- They can create, read, update and delete their own listings.
- They can donate to the website, $10 at a time.
Home/Splash page Showroom Page Showroom Mobile Page Login Page Edit Print Page Show Page
The target audience for this website would range between young families to middle aged couples looking to refresh their living/office/bedroom space. They would have art ready to be taken down and put on the market, or have created the art themselves as a producer.
Front End: HTML5, CSS3/Custom CSS, Embedded Ruby.
Back End: Ruby 2.7, Ruby on Rails 6.0.3.
Database: PostgreSQL, DBeaver.
Deployment: Heroku.
Business Tools: Pivotal Tracker.
Utilities: Stripe, Devise, AWS S3.
DevOps: Git, GitHub, VS Code, Bundler, Balsamiq Wireframes.
- As a user, I want to be able to create an account to view and upload prints.
- As a user, I want to be able to see all the listings on the page.
- As a user, I want to be able to create, update and/or delete a post that I have created.
- As a user, I don't want other users to alter or delete my post.
- As a user, I want to be able to see the contact info of the person who posted the listing.
- As a user, I want to see the price of the listing from the showroom page.
- As a user, I'd like to be able to see a decent preview before clicking through to the whole listing.
I've developed wireframes for three screen sizes; desktop, tablet and mobile.
mArtketplace is an application written using Ruby on Rails and PostgreSQL as the database. It utilises the model-view-controller (MVC) to compartmentalise the applications tasks, and how data is retrieved, executed and sent around the application. CRUD capabilities are implemented and the use of RESTful routes are implemented for ease of use and control by the user.
The mArtketplace at it's core is a very simple app, with the primary feature being able to post listings for other users to view and potentially contact the poster to buy.
To do this, a user would have to create an account within the app. They do this by way of entering a user name and password. This is handled by the 3rd party app Devise. It is capable of handling encryption of passwords as well as user authorisation and authentication. It limits what a user is able to see/do within the app, such as deleting or editing another users listing and vice versa.
Once logged in, the user is then able to browse listings as well as create a new listing of their own. They have the ability to provide info on the listing which includes images. Images are handled with active storage on AWS' S3 buckets. This listing is stored to the PostgreSQL database as a child of the user who created the listing, and the users name is attached and presented along with the listing, so users interested in buying can get in contact. The exchange of goods and payment is handled offsite as it is not set up to handle such actions.
If a user is tickled by the website, they may choose to donate to the website $10, which is handled by the Stripe API, they are taken off site to be handled securely by Stripe itself, where they enter their card details and finish the transaction.
Devise: Devise has been used to handle user authentication. It allows users to sign up through the app, which is handled by devise regarding the encryption of their password as well as the storing to the database.
Stripe: The stripe API allows users to securely donate to the mArtketplace team.
Amazon S3 Buckets: Allows for the uploading and cloud-based storage for listing pictures.
A user has_many
listings, dependent: :destroy
A listing belongs_to
user
A listing has_one_attached
picture
class User < ApplicationRecord
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :validatable
has_many :listings, dependent: :destroy
end
class Listing < ApplicationRecord
belongs_to :user
validates :title, :description, :price, presence: true
has_one_attached :picture
end
Once again the simplicity of the mArtketplace app is the winner here. With the only database relationships being that of the listing to the user, and the user to the listing. There are many users, each user can have many listings, but a listing can only have one user.
t.string "name"
t.string "record_type"
t.bigint "record_id"
t.bigint "blob_id"
t.string "key"
t.string "filename"
t.string "content_type"
t.text "metadata"
t.bigint "byte_size"
t.string "checksum"
t.bigint "user_id", null: false
t.string "title"
t.text "description"
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
The team is a small one, consisting of just one Dev. To keep himself accountable and to track his progress through the app, as well as to gain experience in dealing with project management on a bigger scale, the team used Pivotal Tracker.
In an attempt and effort to follow the AGILE method of project management, a plan was laid out at the very beginning to tick off as the project progressed. Due to a lack of experience with building websites, and general unsured-ness (totally a word) this plan missed a whole bunch of things that needed to be done. Luckily AGILE accounts for this, and these tasks were added in when they came to the front of the teams mind. Below is a collection of screenshots throughout the course of the project.