Skip to content

Commit

Permalink
fmk - updating main to utilize tapisV3
Browse files Browse the repository at this point in the history
  • Loading branch information
fmckenna committed Aug 7, 2024
1 parent 09a0396 commit 1295aa1
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <QThread>
#include <QObject>

#include <AgaveCurl.h>
#include <TapisV3.h>
#include <WorkflowAppEE_UQ.h>
#include <QCoreApplication>

Expand Down Expand Up @@ -71,7 +71,8 @@ int main(int argc, char *argv[])
//Setting Core Application Name, Organization, and Version
QCoreApplication::setApplicationName("EE-UQ");
QCoreApplication::setOrganizationName("SimCenter");
QCoreApplication::setApplicationVersion("3.6.0");
//QCoreApplication::setApplicationVersion("3.6.0");
QCoreApplication::setApplicationVersion("4.0.0");

//Init resources from static libraries (e.g. SimCenterCommonQt or s3hark)
Q_INIT_RESOURCE(images1);
Expand Down Expand Up @@ -129,10 +130,12 @@ int main(int argc, char *argv[])
//

QString tenant("designsafe");
QString storage("agave://designsafe.storage.default/");
//QString storage("agave://designsafe.storage.default/");
QString storage("designsafe.storage.default/");
QString dirName("EE-UQ");

AgaveCurl *theRemoteService = new AgaveCurl(tenant, storage, &dirName);
// AgaveCurl *theRemoteService = new AgaveCurl(tenant, storage, &dirName);
TapisV3 *theRemoteService = new TapisV3(tenant, storage, &dirName);


//
Expand Down

0 comments on commit 1295aa1

Please sign in to comment.