Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 912 Bytes

README.md

File metadata and controls

50 lines (38 loc) · 912 Bytes

real-world-app

CircleCI

Contains the following libraries and executables:

[email protected]
│
├─test/
│   name:    TestRealWorldApp.exe
│   main:    TestRealWorldApp
│   require: real-world-app.lib
│
├─library/
│   library name: real-world-app.lib
│   namespace:    RealWorldApp
│   require:
│
└─executable/
    name:    RealWorldAppApp.exe
    main:    RealWorldAppApp
    require: real-world-app.lib

Developing:

npm install -g esy
git clone <this-repo>
esy install
esy build

Running Binary:

After building the project, you can run the main binary that is produced.

esy x RealWorldAppApp.exe 

Running Tests:

# Runs the "test" command in `package.json`.
esy test