Как посмотреть приложение, созданное в Ratchet, на мобильном устройстве, а именно на iPad mini?
В уроке написано:"On Mac OS X, you can install XCode and use the iPhone simulator to see what your site will look like in Mobile Safari. Alternatively, you could even just use a real phone. If it’s connected to the same WiFi network as your computer, type in the IP address of your development machine along with the port you’re using to develop, and you should see your site."
Что имеется в виду под development machine и где взять ее IP? (использую МАМП)
Куда этот IP вписывать?
Как узнать порт, который я использую для разработки?
Если можно простым языком, а то нигде информации об этом не нашел. Хотя, нет, вот еще было:
Launch terminal
Drag your Ratchet project folder onto terminal (or cd to that directory)
Type "python -m SimpleHTTPServer" into terminal and hit return (should print something like "Serving HTTP on 0.0.0.0 port 8000 ...")
Make sure your iPhone and Mac are on the same wireless connection
Get your Mac's IP address by opening System Preferences > Network and under Wi-Fi you'll see a given IP address
Enter your Mac's IP address followed by :8000 into Safari (i.e. 192.168.2.5:8000)"
- по этой инструкции не получилось, так как после того, как вписал "python -m SimpleHTTPServer" в терминал, нажал Enter, но соообщения "Serving HTTP on 0.0.0.0 port 8000 ..." не увидел.