Skip to content

Commit 97ffe6c

Browse files
authored
Merge pull request #18 from icefoganalytics/main
Update from IceFog
2 parents 3da2523 + 9b6ea70 commit 97ffe6c

File tree

105 files changed

+3148
-336
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+3148
-336
lines changed

README.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@
55
### API (Back-end)
66

77
- [Node](https://nodejs.org/en) + [Express](https://expressjs.com/)
8-
98
- [Typescript](https://www.typescriptlang.org/docs/handbook/typescript-from-scratch.html)
10-
119
- [Knex](https://knexjs.org/guide/)
1210

1311
### Front-End
1412

1513
- [Vue 3](https://vuejs.org/guide/introduction.html) + [Vuetify](https://vuetifyjs.com/en/getting-started/installation/#installation)
16-
1714
- [Typescript](https://www.typescriptlang.org/docs/handbook/typescript-from-scratch.html)
18-
1915
- [Axios](https://github.com/axios/axios)
2016

2117
### Database
2218

2319
- Microsoft SQL Server - [MSSQL](https://www.postgresql.org/docs/current/app-psql.html)
24-
2520
- [Docker Compose](https://docs.docker.com/compose/compose-file/)
2621

22+
### Mail Server
23+
24+
- Mail Dev - [MailDev](https://github.com/maildev/maildev?tab=readme-ov-file#docker-run)
25+
- [MailDev Docker Image](https://hub.docker.com/r/maildev/maildev)
26+
2727
---
2828

2929
## Development
@@ -82,6 +82,14 @@
8282

8383
2. Log in to the front-end service at http://localhost:8080
8484

85+
86+
#### Troubleshooting
87+
88+
If you are getting a bunch of "Login required" errors in the console, make sure that you have disabled any kind of enhanced tracking protection.
89+
90+
Auth0 use third-party cookies for authentication, and they get blocked by all major browsers
91+
by default.
92+
8593
### DB Service (a.k.a database service)
8694

8795
1. Boot only the db service using:
@@ -116,12 +124,9 @@
116124

117125
You can also skip seeding if database is not empty by setting the `SKIP_SEEDING_UNLESS_EMPTY=true` environment variable.
118126

119-
### Troubleshooting
127+
### Mail Service (a.k.a mail server)
120128

121-
If you are getting a bunch of "Login required" errors in the console, make sure that you have disabled any kind of enhanced tracking protection.
122-
123-
Auth0 use third-party cookies for authentication, and they get blocked by all major browsers
124-
by default.
129+
1. Access the web interface at http://localhost:1080
125130

126131
## Testing
127132

9.82 KB
Loading

_Design/Entity Relationship Diagrams.wsd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ entity "dataset_integrations" {
6262
status : nvarchar(100)
6363
error_code : nvarchar(100)
6464
error_details : nvarchar(MAX)
65+
estimated_size_in_bytes : int
66+
estimated_number_of_records : int
67+
estimated_response_time_in_ms : int
6568
last_success_at : datetime2(0)
6669
last_failure_at : datetime2(0)
6770
created_at : datetime2(0)

api/package-lock.json

Lines changed: 180 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)