Skip to content
Open

Cefi #654

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
7d0cfe4
feat: ng g app
kimurayu45z Aug 30, 2023
b0e921c
feat: cefi
kimurayu45z Aug 30, 2023
f9a066f
feat: kyc
kimurayu45z Aug 30, 2023
745f1e4
feat: kyc
kimurayu45z Aug 31, 2023
80c2dd3
Merge branch 'develop' of https://github.com/UnUniFi/web-apps into cefi
kimurayu45z Sep 7, 2023
5f766b1
feat: svelte lenging
kimurayu45z Sep 7, 2023
44946e5
feat: tailwind
kimurayu45z Sep 8, 2023
cb3403e
feat: kyc
kimurayu45z Sep 8, 2023
bd0f228
feat: kyc-provider
kimurayu45z Sep 8, 2023
c00cdfb
chore: move
kimurayu45z Sep 8, 2023
8dba0a9
feat: kyc-provider
kimurayu45z Sep 8, 2023
f3f6824
feat: kyc
kimurayu45z Sep 8, 2023
455eb56
feat: bonus
kimurayu45z Sep 8, 2023
783047d
Merge branch 'develop' of https://github.com/UnUniFi/web-apps into cefi
kimurayu45z Sep 9, 2023
3e21293
feat: cefi
kimurayu45z Sep 9, 2023
c348c2f
feat: cefi
kimurayu45z Sep 10, 2023
a66eb8e
feat: cefi
kimurayu45z Sep 10, 2023
331d24a
feat: cefi
kimurayu45z Sep 10, 2023
9f1db20
feat: firebase
kimurayu45z Sep 11, 2023
510e7a5
feat: kyc
kimurayu45z Sep 11, 2023
3ed05e0
feat: kyc
kimurayu45z Sep 11, 2023
adad229
feat: kyc
kimurayu45z Sep 11, 2023
5389fad
feat: cefi
kimurayu45z Sep 11, 2023
39bf252
feat: kyc
kimurayu45z Sep 11, 2023
cf27443
feat: bonus
kimurayu45z Sep 12, 2023
f2f4a24
feat: kyc
kimurayu45z Sep 12, 2023
7648b8b
feat: form
kimurayu45z Sep 12, 2023
5462da9
feat: kyc
kimurayu45z Sep 12, 2023
d2283e5
feat: bonus
kimurayu45z Sep 12, 2023
df6c5c6
feat: codegen
kimurayu45z Sep 12, 2023
b3cf27c
feat: cefi
kimurayu45z Sep 13, 2023
ec71e9e
feat: cefi
kimurayu45z Sep 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
128 changes: 123 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
"main": "projects/explorer/src/main.ts",
"polyfills": "projects/explorer/src/polyfills.ts",
"tsConfig": "projects/explorer/tsconfig.app.json",
"assets": ["projects/explorer/src/favicon.png", "projects/explorer/src/assets"],
"assets": [
"projects/explorer/src/favicon.png",
"projects/explorer/src/assets"
],
"styles": [
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
"projects/explorer/src/styles.css"
Expand Down Expand Up @@ -100,7 +103,10 @@
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["projects/explorer/**/*.ts", "projects/explorer/**/*.html"]
"lintFilePatterns": [
"projects/explorer/**/*.ts",
"projects/explorer/**/*.html"
]
}
},
"cypress-run": {
Expand Down Expand Up @@ -168,7 +174,10 @@
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["projects/shared/**/*.ts", "projects/shared/**/*.html"]
"lintFilePatterns": [
"projects/shared/**/*.ts",
"projects/shared/**/*.html"
]
}
},
"cypress-run": {
Expand Down Expand Up @@ -225,7 +234,10 @@
"main": "projects/portal/src/main.ts",
"polyfills": "projects/portal/src/polyfills.ts",
"tsConfig": "projects/portal/tsconfig.app.json",
"assets": ["projects/portal/src/favicon.png", "projects/portal/src/assets"],
"assets": [
"projects/portal/src/favicon.png",
"projects/portal/src/assets"
],
"styles": [
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
"projects/portal/src/styles.css"
Expand Down Expand Up @@ -294,7 +306,10 @@
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["projects/portal/**/*.ts", "projects/portal/**/*.html"]
"lintFilePatterns": [
"projects/portal/**/*.ts",
"projects/portal/**/*.html"
]
}
},
"cypress-run": {
Expand Down Expand Up @@ -331,6 +346,109 @@
}
}
}
},
"cefi": {
"projectType": "application",
"schematics": {},
"root": "projects/cefi",
"sourceRoot": "projects/cefi/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/cefi",
"index": "projects/cefi/src/index.html",
"main": "projects/cefi/src/main.ts",
"polyfills": "projects/cefi/src/polyfills.ts",
"tsConfig": "projects/cefi/tsconfig.app.json",
"assets": [
"projects/cefi/src/favicon.ico",
"projects/cefi/src/assets"
],
"styles": [
"projects/cefi/src/styles.css"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "projects/cefi/src/environments/environment.ts",
"with": "projects/cefi/src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "cefi:build:production"
},
"development": {
"browserTarget": "cefi:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "cefi:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/cefi/src/test.ts",
"polyfills": "projects/cefi/src/polyfills.ts",
"tsConfig": "projects/cefi/tsconfig.spec.json",
"karmaConfig": "projects/cefi/karma.conf.js",
"assets": [
"projects/cefi/src/favicon.ico",
"projects/cefi/src/assets"
],
"styles": [
"projects/cefi/src/styles.css"
],
"scripts": []
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/cefi/**/*.ts",
"projects/cefi/**/*.html"
]
}
}
}
}
}
}
32 changes: 26 additions & 6 deletions firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
{
"target": "ununifi-alpha-test",
"public": "dist/landing-page",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/explorer/**",
Expand All @@ -22,7 +26,11 @@
{
"target": "ununifi-beta-test",
"public": "dist/landing-page",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/explorer/**",
Expand All @@ -41,7 +49,11 @@
{
"target": "ununifi-test",
"public": "dist/landing-page",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/explorer/**",
Expand All @@ -60,7 +72,11 @@
{
"target": "ununifi",
"public": "dist/landing-page",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/explorer/**",
Expand All @@ -79,7 +95,11 @@
{
"target": "ununifi-stable",
"public": "dist/landing-page",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/explorer/**",
Expand All @@ -104,4 +124,4 @@
"enabled": true
}
}
}
}
Loading