Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #109 from leaphy-robotics/python-editor
Browse files Browse the repository at this point in the history
feat: add python editor
  • Loading branch information
koen1711 authored Jan 21, 2024
2 parents d8a9a83 + cede191 commit 31b07a7
Show file tree
Hide file tree
Showing 100 changed files with 2,766 additions and 1,915 deletions.
34 changes: 0 additions & 34 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,8 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

.angular

%APPDATA%

/out

# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# packaged
/easybloqs-win32-x64
/easybloqs-darwin-x64

# installers
*.dmg

# dependencies
/node_modules

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json

# IDEs and editors
/.idea
.project
Expand All @@ -46,16 +22,6 @@ speed-measure-plugin*.json
.history/*

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings
.angular

# System Files
.DS_Store
Thumbs.db
306 changes: 153 additions & 153 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,161 +1,161 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"leaphy-client": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
"src/favicon.ico",
"src/assets",
{
"glob": "**/*",
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/media",
"output": "./media"
},
{
"glob": "en.json",
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/msg/json",
"output": "./msg/json"
},
{
"glob": "nl.json",
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/msg/json",
"output": "./msg/json"
}
],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/@fortawesome/fontawesome-free/css/all.css",
"src/styles.scss"
],
"scripts": [
"./node_modules/jquery/dist/jquery.min.js",
"./node_modules/bootstrap/dist/js/bootstrap.min.js",
"./node_modules/prismjs/prism.js",
"./node_modules/prismjs/components/prism-clike.js",
"./node_modules/prismjs/components/prism-c.js",
"./node_modules/prismjs/components/prism-cpp.js",
"./node_modules/prismjs/components/prism-arduino.js",
"./node_modules/ace-builds/src-min/ace.js",
"./node_modules/ace-builds/src-min/mode-c_cpp.js",
"./node_modules/ace-builds/src-min/theme-solarized_light.js",
"./node_modules/ace-builds/src-min/ext-beautify.js",
"./node_modules/ace-builds/src-min/ext-searchbox.js",
"./node_modules/ace-builds/src-min/ext-language_tools.js"
]
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"leaphy-client": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
"src/favicon.ico",
"src/assets",
{
"glob": "**/*",
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/media",
"output": "./media"
},
{
"glob": "en.json",
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/msg/json",
"output": "./msg/json"
},
{
"glob": "nl.json",
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/msg/json",
"output": "./msg/json"
}
],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/@fortawesome/fontawesome-free/css/all.css",
"src/styles.scss"
],
"scripts": [
"./node_modules/jquery/dist/jquery.min.js",
"./node_modules/bootstrap/dist/js/bootstrap.min.js",
"./node_modules/prismjs/prism.js",
"./node_modules/prismjs/components/prism-clike.js",
"./node_modules/prismjs/components/prism-c.js",
"./node_modules/prismjs/components/prism-cpp.js",
"./node_modules/prismjs/components/prism-arduino.js",
"./node_modules/ace-builds/src-min/ace.js",
"./node_modules/ace-builds/src-min/mode-c_cpp.js",
"./node_modules/ace-builds/src-min/mode-python.js",
"./node_modules/ace-builds/src-min/theme-solarized_light.js",
"./node_modules/ace-builds/src-min/ext-beautify.js",
"./node_modules/ace-builds/src-min/ext-searchbox.js",
"./node_modules/ace-builds/src-min/ext-language_tools.js"
]
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "leaphy-client:build"
},
"configurations": {
"production": {
"browserTarget": "leaphy-client:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "leaphy-client:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss",
"./node_modules/bootstrap/@fortawesome/fontawesome-free/css/all.css"
],
"scripts": []
}
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "leaphy-client:serve"
},
"configurations": {
"production": {
"devServerTarget": "leaphy-client:serve:production"
}
}
}
]
}
}
},
"serve": {

"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "leaphy-client:build"
},
"configurations": {
"production": {
"browserTarget": "leaphy-client:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "leaphy-client:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss",
"./node_modules/bootstrap/@fortawesome/fontawesome-free/css/all.css"
],
"scripts": []
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "leaphy-client:serve"
},
"configurations": {
"production": {
"devServerTarget": "leaphy-client:serve:production"
}
}
}
}
},
"defaultProject": "leaphy-client",
"cli": {
"defaultCollection": "@angular-eslint/schematics",
"analytics": "6d8c3839-2848-4328-b7fb-a10f9273fdfc"
}
},
"defaultProject": "leaphy-client",
"cli": {
"defaultCollection": "@angular-eslint/schematics",
"analytics": "6d8c3839-2848-4328-b7fb-a10f9273fdfc"
}
}
Binary file removed easybloqs-app-icon.png
Binary file not shown.
Binary file removed easybloqs-loading.gif
Binary file not shown.
Loading

0 comments on commit 31b07a7

Please sign in to comment.