Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一般是在本地开发php应用,然后用ftp上传到服务器。我正在研究 appfog 作为替代方案,但我想在 localhost 上设置开发环境并使用与登台和生产相同的数据库。这是可能的还是我必须使用其他服务来托管我的数据库并使用 appfog 进行部署。
如果您已经在为您的应用程序使用托管数据库服务,那么您可以在本地和生产服务器上使用相同的数据库。AppFog 上有许多可用的绑定。
但是如果你使用 SQLite,你应该考虑使用持久数据库解决方案。不建议在 AppFog 的生产环境中使用。每次你更新你的应用程序时,你的 SQLite 数据库都会被吹走。
由于 AppFog 数据库无法从外部访问,因此您必须通过隧道进入它们。您将在此处找到更多信息:
http://blog.appfog.com/how-to-manage-your-appfog-database-from-your-desktop-on-the-other-side-of-the-world/