1
0
-1

Hi,

Please share references to following :

  1. System Requirements for setting up SDC in a local desktop or server.
  2. Setup Guide with instructions for setting up SDC in a local environment.
  3. User Guide for the Demo.

Thank you in advance (smile)

Best Regards,

Nagaraj

    CommentAdd your comment...

    3 answers

    1.  
      2
      1
      0

      Probably the easiest way to set up SDC for a local demo/development is using Docker as described in Building & Deploying SDC on Linux for Development. There are also https://git.onap.org/integration/tree/bootstrap/vagrant-onap/lib/sdc and http://onap.readthedocs.io/en/latest/submodules/integration.git/bootstrap/vagrant-onap/doc/source/index.html?highlight=vagrant. Choose what works best for you. I can't help with a guide though. Sorry about that. Try searching the Wiki.

       

      1. Nagaraja Upadyaya

        Thanks a lot Vitally (smile) for the quick response.  I will try to setup local environment by following instruction in above URL.

      CommentAdd your comment...
    2.  
      1
      0
      -1

      Thanks Vitaly,

      Yes, it was maven issue resolved now

        CommentAdd your comment...
      1.  
        1
        0
        -1

        Thanks Vitaly.

        I am running into another problem. While trying to build sdc, getting following error:

        root@ubuntu-VirtualBox:/home/sdc/sdc# mvn test
        SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
        SLF4J: Defaulting to no-operation (NOP) logger implementation
        SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.

        I am not able to understand because same code base working on windows environment.

        Could you please help me out (smile)


        1. Vitaly Emporopulo

          This is not related to setting up SDC, is it? Anyway, you can ignore this error in tests. The problem is that the POM doesn't include an SLF4J binding. I'd say you may leave it as is or use slf4j-simple to avoid complex configuration.

          <dependency>
              <groupId>org.slf4j</groupId>
              <artifactId>slf4j-simple</artifactId>
              <version>${slf4j.version}</version>
              <scope>test</scope>
          </dependency>
        CommentAdd your comment...