-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Data Model thinking... #3
Comments
I'm thinking
enum platform: { ios: 0, android: 1 } Screenshots: Would it be helpful to display screenshots/descriptions on a show page/modal? |
Since Apps could be in both stores:
OR
|
Yeah the platform enum is great. Each app will have its own show page for sure (probably shown in a modal). |
Hey @robzolkos I had a tweet about this the other day, but you beat me to it. My tweet was only half a joke 😁 But something that I do think it is worth pursuing is just using a yaml file for your data. This means that you can load it from a file and don't have to worry about a database. It will help save some time and money. The benefit of a yaml file is that it would make it easier for contributors to add another record compared with a database interface. It's just a thought. |
Hey @williamkennedy - yep I just added a config/app_directory.yml file! Much easier! |
Model:
App/Application ? (feels weird to have a model called this in an app)
Attributes:
has_many :screenshots
Screenshot
has_attached :file
The text was updated successfully, but these errors were encountered: