<App Name> ![License](https://img.shields.io/github/license/.svg?link=)
...
public class ScriptableObjectLoader : EditorWindow | |
{ | |
private static readonly int TYPE = 0; | |
private static readonly int NAME = 1; | |
private static readonly int IMAGE_PATH = 2; | |
[MenuItem("Tools/Load Scriptable Object Data")] | |
public static LoadScriptableObjectsFromFile() | |
{ |
#!/usr/bin/env python | |
# encoding: utf-8 | |
import tweepy #https://github.com/tweepy/tweepy | |
import csv | |
#Twitter API credentials | |
consumer_key = "" | |
consumer_secret = "" | |
access_key = "" |
...
Liste der Apps und Ports
Map App (Andrei) - 51100
AOI Machine Digital Twin (Andrei) - 51101
Black Cylinder App (Andrei) - 51102
SAP Kanban App (Andrei) - 52101
SICK Lector Digital Twin (Andrei/Lukas Adler) - 52102
OEE App (Andrei/Lukas Adler) - 52103
AOI Machine Dashboard (Nico) - 51000
FROM microsoft/dotnet:2.1-sdk AS build-env | |
WORKDIR /app | |
# copy csproj and restore as distinct layers | |
COPY *.csproj ./ | |
RUN dotnet restore | |
# copy everything else and build | |
COPY . ./ | |
# RUN dotnet build -c Release |
import { BrowserModule } from '@angular/platform-browser'; | |
import { ErrorHandler, NgModule } from '@angular/core'; | |
import { Observable } from 'rxjs/Rx' | |
import { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular'; | |
import { SplashScreen } from '@ionic-native/splash-screen'; | |
import { StatusBar } from '@ionic-native/status-bar'; | |
import { MyApp } from './app.component'; | |
import { HomePage } from '../pages/home/home'; | |
import { Page2 } from "../pages/page2/page2"; |