Go to file
dependabot[bot] 5c1ba7a047
Build(deps): bump @sentry/nextjs from 7.58.1 to 7.60.0 (#315)
Bumps [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) from 7.58.1 to 7.60.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/getsentry/sentry-javascript/compare/7.58.1...7.60.0)

---
updated-dependencies:
- dependency-name: "@sentry/nextjs"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-24 10:51:56 +03:00
__mocks__ tests: fix, improve utility, separate workflows (#241) 2023-06-05 08:47:42 +02:00
__tests__ Mp 2949 implemet health computer for borrow (#311) 2023-07-24 09:44:45 +02:00
.github tests: fix, improve utility, separate workflows (#241) 2023-06-05 08:47:42 +02:00
.vscode Upgrade next (#100) 2023-02-24 09:47:27 +01:00
public MP-3110: adjusted and finalized TV styling (#309) 2023-07-20 10:53:24 +02:00
src Mp 2949 implemet health computer for borrow (#311) 2023-07-24 09:44:45 +02:00
.env.example Mp 2836 implement pagination to the batched smart contract queries (#301) 2023-07-17 12:01:00 +03:00
.eslintignore WIP: Tradingview charts (#296) 2023-07-13 09:02:38 +02:00
.eslintrc.json Linter and prettier adjustments (#50) 2022-11-09 10:04:06 +01:00
.gitignore WIP: Tradingview charts (#296) 2023-07-13 09:02:38 +02:00
.prettierignore WIP: Tradingview charts (#296) 2023-07-13 09:02:38 +02:00
.prettierrc Linter and prettier adjustments (#50) 2022-11-09 10:04:06 +01:00
Dockerfile Upgrade next (#100) 2023-02-24 09:47:27 +01:00
generate_types.sh Withdraw assets from account (#43) 2022-11-07 16:36:12 +00:00
install_charting_library.js add scripts for installing charting_library + update readme (#298) 2023-07-13 14:38:08 +02:00
install_charting_library.sh add scripts for installing charting_library + update readme (#298) 2023-07-13 14:38:08 +02:00
jest.config.js Mp 2949 implemet health computer for borrow (#311) 2023-07-24 09:44:45 +02:00
jest.setup.js tests: fix, improve utility, separate workflows (#241) 2023-06-05 08:47:42 +02:00
next.config.js New architecture (#196) 2023-05-16 12:39:52 +02:00
package.json Build(deps): bump @sentry/nextjs from 7.58.1 to 7.60.0 (#315) 2023-07-24 10:51:56 +03:00
postcss.config.js initial setup wip 2022-09-02 15:30:58 +01:00
README.md add scripts for installing charting_library + update readme (#298) 2023-07-13 14:38:08 +02:00
sentry.client.config.js WIP (#12) 2022-09-29 20:21:31 +01:00
sentry.properties sentry setup 2022-09-02 22:29:22 +01:00
sentry.server.config.js WIP (#12) 2022-09-29 20:21:31 +01:00
tailwind.config.js overall cleanup and refactoring + SettingsModal (#286) 2023-07-11 21:01:14 +02:00
tsconfig.json Mp 2344 fund credit account flow (#179) 2023-05-08 12:18:33 +02:00
validate-env.js Mp 2836 implement pagination to the batched smart contract queries (#301) 2023-07-17 12:01:00 +03:00
vercel.json Env update (#113) 2023-03-09 10:26:16 +01:00
yarn.lock Build(deps): bump @sentry/nextjs from 7.58.1 to 7.60.0 (#315) 2023-07-24 10:51:56 +03:00

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, install the dependencies:

yarn install

Then, run the development server:

yarn dev

Open http://localhost:3000 with your browser to see the result.

Trading charts

The trade charts are sourced with the TradingView charting_library. In order to enable the charts, request has to be requested from TradingView. This allows the charting_library package to be pulled-in during the application build process. For this, it is recommended to do the following:

  1. Request access to the TradingView repository
  2. Create a private fork
  3. Generate a Personal Access Token from Github
  4. Add the following to the environment variables: a. CHARTING_LIBRARY_USERNAME -> the username of the account with access b. CHARTING_LIBRARY_ACCESS_TOKEN -> the access token c. CHARTING_LIBRARY_REPOSITORY -> the URI of the Github repository
  5. Build the application by executing the install_charting_library.sh script prior.

For development on localhost, run yarn install-charting-library. Ensure that you have a .env.local file defined with the variables mentioned above.