mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
34 lines
844 B
C++
34 lines
844 B
C++
#include "Server.h"
|
|
#include <QtGui>
|
|
#include <iostream>
|
|
#ifdef Q_OS_UNIX
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
int main(int argc, char **argv) {
|
|
#ifdef Q_OS_UNIX
|
|
if (setpgid(0, 0) < 0) {
|
|
std::cerr << "Unable to set new process group." << std::endl;
|
|
return 1;
|
|
}
|
|
#endif
|
|
|
|
QApplication app(argc, argv);
|
|
app.setApplicationName("capybara-webkit");
|
|
app.setOrganizationName("thoughtbot, inc");
|
|
app.setOrganizationDomain("thoughtbot.com");
|
|
|
|
QStringList args = app.arguments();
|
|
bool ignoreSslErrors = args.contains("--ignore-ssl-errors");
|
|
|
|
Server server(0, ignoreSslErrors);
|
|
|
|
if (server.start()) {
|
|
std::cout << "Capybara-webkit server started, listening on port: " << server.server_port() << std::endl;
|
|
return app.exec();
|
|
} else {
|
|
std::cerr << "Couldn't start capybara-webkit server" << std::endl;
|
|
return 1;
|
|
}
|
|
}
|
|
|