-2

Directed to: Bolt and Bolt experienced developers

Site in question: PlateWire

Brief Description: Website where people can basically register their automobile's license plate and send virtual messages to other drivers using the license plate as an identifier.

Currently the site is built using ASP.NET (built over a weekend in 2006, has not really been updated since; I know, bad developer). The site was built with plans to globalize, but never got further than just the US; this version I intend to include the ability for every country, and eventually, many languages to be available as well (localization).

I'm confident I can build extensions for some of the more specific parts, for example creating/adding a plate that will look visually similar enough to the actual plate to display for previews. My questions are more in the how much of Bolt's internal structure can I/should I use if I decide to go this route?

Specifically using taxonomy and relationships (?) for the following items:

  • Location (City, State/Region, Country)
  • Vehicle (Make, Model, Color)
  • Plates (background image (if any), background color, text color, etc)
  • RateType (Name, Color, Icon)

Rates/Wire themselves I believe would work best as ContentTypes if I am understanding correctly.

I would love to journal this process and hopefully develop some interest in both PlateWire and Bolt if this turns out as easy as I think it could be. If there are any examples or guidance you guys might be able to provide me, it would go a long way to help me figure out if this truly will be not only a fun but successful project.

I do have a sketched out database diagram which is based on building it from scratch, which would not require as much due to Bolt's available functionality. Let me know if you'd like me to share this; I'd prefer to do it privately if so.

Thanks in advanced,

Mark

badmark
  • 19
  • 3
  • What's your question/s? I think you should carefully reword this, otherwise it's likely to be closed. – user3791372 Aug 18 '14 at 20:42
  • My question is if I can and should use Taxonomy and Relationships to handle the specific data types I am working with or should I just build my own extensions. What and how much should I rely on Bolt's internal functionality to relate objects, and what should I develop myself basically. I know it may not be so straight forward, but I'm just trying to get a feel from Bolt developers if this is a good fit for what I want to achieve. Bolt on Twitter asked me to post this here to start a conversation. – badmark Aug 18 '14 at 21:49
  • Stack Overflow is not a place for conversations (unless you're in the chat rooms!) – user3791372 Aug 18 '14 at 21:51
  • I have specific questions I would like answered, if an actual conversation does spawn, I'm sure we could move to one of many mediums available for chat. Should I use Bolt, is it a good fit, for the type of application I am re-developing, and if so how much should/can I rely on taxonomies and relationships to handle the bulk of the heavy lifting when it comes to referencing user submitted content and the data underlying it. – badmark Aug 18 '14 at 22:48
  • I have researched, I wanted some feedback and solid answers if anyone has used Bolt to create an app that tracks countries, regions, automobiles, etc. – badmark Aug 19 '14 at 00:45

1 Answers1

0

The data model you describe would work within Bolt. All of the items you describe can easily be caught within Bolt's contenttypes.

As for the links between them: I think location, vehicle and plates ought to use Relations. The ratetype should probably be a category taxonomy.

That said, perhaps vehicle could be a tag taxonomy as well, if you're not too strict, and just use them as [Volvo, green, hatchback].

Bopp
  • 664
  • 3
  • 5