Skip to content

Commit

Permalink
Design a new project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Prayag-Das authored and JorWo committed Jul 6, 2024
1 parent a37856d commit 83dfa0c
Show file tree
Hide file tree
Showing 123 changed files with 571 additions and 523 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/badges.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:

- name: Installing dependencies
run: |
cd app
cd ui
npm install
- name: Tests
run: |
cd app
cd ui
npm run test:coverage
- name: Switch to badges branch
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ jobs:

- name: Install dependencies
run: |
cd app
cd ui
npm install
- name: Run ESLint
run: |
cd app
cd ui
npm run lint
- name: Run Jest Tests
run: |
cd app
cd ui
npm run test
42 changes: 21 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
app/node_modules
app/.pnp
app/pnp.js
ui/node_modules
ui/.pnp
ui/pnp.js

# testing
app/coverage
ui/coverage

# next.js
app/.next/
app/out/
ui/.next/
ui/out/

# production
app/build
ui/build

# misc
**/.DS_Store
app/*.pem
ui/*.pem

# debug
app/npm-debug.log*
app/yarn-debug.log*
app/yarn-error.log*
app/.pnpm-debug.log*
ui/npm-debug.log*
ui/yarn-debug.log*
ui/yarn-error.log*
ui/.pnpm-debug.log*

# local env files
app/.env*.local
ui/.env*.local

# vercel
app/.vercel
ui/.vercel

# typescript
app/*.tsbuildinfo
app/next-env.d.ts
ui/*.tsbuildinfo
ui/next-env.d.ts

# IDEs
.idea
.vscode
app/.idea
app/.vscode
ui/.idea
ui/.vscode

# package-lock
app/package-lock.json
ui/package-lock.json

# api
api/.classpath
Expand All @@ -57,5 +57,5 @@ api/*.iml
api/.DS_Store

# cypress
app/cypress/screenshots/*
app/cypress/downloads/*
ui/cypress/screenshots/*
ui/cypress/downloads/*
Original file line number Diff line number Diff line change
Expand Up @@ -610,11 +610,11 @@ public void various() {

// String dateStr = Dates.formatDate(h2.getObservedDate().plusDays(-1), "yyyy-MM-dd");
// String dateExpectedStr = h1.getObservedDateStr();

// Holiday holiday = holidayService.findClosestHolidayByDate(dateStr, false, "state");
// assertThat(holiday.getObservedDateStr(), equalTo(dateExpectedStr));
}


// String dateStr = "3000-01-01";
// String dateExpectedStr = holidays.get(holidays.size() - 1).getObservedDateStr();
// Holiday holiday;
Expand Down
50 changes: 0 additions & 50 deletions app/access/AuthenticationService.ts

This file was deleted.

13 changes: 0 additions & 13 deletions app/access/AuthorizationService.ts

This file was deleted.

7 changes: 0 additions & 7 deletions app/access/Role.ts

This file was deleted.

This file was deleted.

39 changes: 0 additions & 39 deletions app/components/layout/menubar/Menubar.tsx

This file was deleted.

Loading

0 comments on commit 83dfa0c

Please sign in to comment.