Git Product home page Git Product logo

scribi's Introduction

scribi

(script binder)

Windows CI

By Benjamin Proemmer

Scribi is the main application to run scripts and automatic generate an WebApi and SignalR interface for them.

#Deployment

Based on the blog of Scott Hanselman, you have two possibilities to deploy the app.

Framework-dependent (FDD)

project.json

"dependencies": {
    "Microsoft.NETCore.App": {
      "version": "1.0.1" ,
      "type": "platform"  
    },
}

dotnet build

dotnet build

dotnet publish

dotnet publish

after this you will find a Scribi.dll which you can run with dotnet.exe.

Framework-dependent (SCD)

project.json

Remove the "type"="platform" from dependencies.

"dependencies": {
    "Microsoft.NETCore.App": {
      "version": "1.0.1" 
    },
}

Add runtimes (get Id's from here)

"runtimes": {
     "win10-x64": {},
     "osx.10.10-x64": {},
     "ubuntu.14.04-x64": {}
   }

dotnet build

dotnet build -r win10-x64
dotnet build -r osx.10.10-x64
dotnet build -r ubuntu.14.04-x64

dotnet publish

dotnet publish -c release -r win10-x64
dotnet publish -c release -r osx.10.10-x64
dotnet publish -c release -r ubuntu.14.04-x64

Once this is done, you get on folder for every runtime in ..\Scribi\bin\Release\netcoreapp1.0[Runtime]. In Windows10 you get in the win10-x64 folder the file Scribi.exe.

Links

scribi's People

Contributors

proemmer avatar

Watchers

Nguyen Khac Trieu avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.