This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.CodeDom.Compiler; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.IO; | |
using System.Text; | |
using ENV.Data; | |
using ENV.Data.DataProvider; | |
using Firefly.Box.Data.Advanced; | |
using Firefly.Box.Data.DataProvider; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ENV.Data; | |
using ENV.Data.DataProvider; | |
using Firefly.Box.Data.Advanced; | |
using Firefly.Box.Data.DataProvider; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "npm", | |
"script": "dev-ng", | |
"problemMatcher": [ | |
"$tsc-watch" | |
], | |
"label": "npm: dev-ng", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"projects": { | |
"hug-moms": { | |
"root": "", | |
"sourceRoot": "src", | |
"projectType": "application", | |
"prefix": "app", | |
"schematics": { | |
"@schematics/angular:component": { | |
"style": "scss", | |
"skipTests": true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/package.json b/package.json | |
index 3bb8620..f6b1b47 100644 | |
--- a/package.json | |
+++ b/package.json | |
@@ -4,6 +4,8 @@ | |
"scripts": { | |
"ng": "ng", | |
"start": "ng serve", | |
+ "dev-node": "ts-node-dev --project tsconfig.server.json src/server/", | |
+ "dev-ng": "ng serve --proxy-config proxy.conf.json --open", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "npm", | |
"script": "dev-react", | |
"problemMatcher": [ | |
"$tsc-watch" | |
], | |
"label": "npm: dev-react", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See http://help.github.com/ignore-files/ for more about ignoring files. | |
# compiled output | |
/dist | |
/tmp | |
/out-tsc | |
# Only exists if Bazel was run | |
/bazel-out | |
# dependencies |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table Person( | |
social_security_number int, | |
name varchar(50) | |
) | |
create table transactions( | |
person_social_security_number int, | |
month int, | |
amount decimal | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import glob from 'glob'; | |
import path from 'path'; | |
for (const type of ["entity", "controller"]) { | |
for (const ext of ["js", "ts"]) { | |
for (const file of glob.sync(`src/**/*.${type}.${ext}`)) { | |
require(path.resolve(file)) | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: Arial, Helvetica, sans-serif; | |
background-color: #f5f5f5; | |
display: flex; | |
justify-content: center; | |
font-size:x-large | |
} | |
input{ | |
font-size: x-large; | |
min-width: 18px; |
OlderNewer