source: ProjectBuilder/devel/pb-server/bin/pb-server@ 2624

Last change on this file since 2624 was 2624, checked in by Bruno Cornec, 4 years ago

More tests around OpenAPI - back to a working server with v3

  • Property svn:executable set to *
File size: 532 bytes
Line 
1#!/usr/bin/env perl
2
3use strict;
4use warnings;
5
6use ProjectBuilder::Env;
7use ProjectBuilder::Conf;
8use Data::Dumper;
9
10# Start command line interface for application
11use Mojo::File qw(curfile);
12use lib curfile->dirname->sibling('lib')->to_string;
13use Mojolicious::Commands;
14
15# Force for now
16pb_env_init("pb",undef,"none",0);
17
18# Debug YAML validation
19$ENV{'JSON_VALIDATOR_DEBUG'} = 1;
20
21#print "CONF: ".Dumper(pb_conf_get_hash())."\n";
22# Start command line interface for application
23Mojolicious::Commands->start_app('ProjectBuilder');
Note: See TracBrowser for help on using the repository browser.