There are similar questions, but none answers what I really need. I actually don't want to create as long as there is already one ready-made.
有类似的问题,但没有一个回答我真正需要的。只要已经有一个现成的,我实际上不想创造。
If so please guide me on the right direction. This isn't anything big, just to maintain my own collection.
如果是这样,请指导我正确的方向。这不是什么大事,只是为了维护我自己的收藏。
So basically:
- Is there a ready-made CMS (or a plugin for a CMS) that does this, even a framework with this kind of web application is good?
- If not what will be the quickest way to implement one?
是否有现成的CMS(或CMS的插件),即使是这种Web应用程序的框架也很好?
如果不是最快的实施方式是什么?
Thanks for any help.
谢谢你的帮助。
1 个解决方案
#1
- Most CMS would be able to maintain a movie database, but i don't think there is any CMS whith this purpose in mind. It all depends an what frameworks and environments you have availible
大多数CMS都能够维护一个电影数据库,但我认为没有任何CMS有这个目的。这完全取决于您可以使用的框架和环境
2. With ruby on rails setup, do
2.使用ruby on rails设置,执行
rails my_movies
cd my_movies
script/generate scaffold movies title:string rating:integer
#1
- Most CMS would be able to maintain a movie database, but i don't think there is any CMS whith this purpose in mind. It all depends an what frameworks and environments you have availible
大多数CMS都能够维护一个电影数据库,但我认为没有任何CMS有这个目的。这完全取决于您可以使用的框架和环境
2. With ruby on rails setup, do
2.使用ruby on rails设置,执行
rails my_movies
cd my_movies
script/generate scaffold movies title:string rating:integer