├── .env ├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml ├── old_project ├── .dockerignore ├── .editorconfig ├── .gitignore ├── docker-compose.yml ├── gpu.dockerfile ├── gpu.yml ├── gpu │ ├── .gitignore │ ├── app │ │ ├── __init__.py │ │ ├── books.py │ │ ├── entries_profiles.py │ │ ├── nlp.py │ │ ├── run.py │ │ ├── themes.py │ │ └── utils.py │ └── tests │ │ ├── conftest.py │ │ ├── copy_test.sh │ │ ├── lefnire_books.py │ │ ├── test_batching.py │ │ ├── test_books.py │ │ ├── test_entries.py │ │ ├── test_influencers.py │ │ ├── test_profiles.py │ │ ├── test_qa.py │ │ └── test_themes.py ├── server.dockerfile └── server │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── analytics.py │ ├── habitica.py │ ├── mail.py │ ├── rest │ │ ├── routes.py │ │ └── utils.py │ └── ws │ │ ├── auth.py │ │ ├── entries.py │ │ ├── fields.py │ │ ├── groups.py │ │ ├── insights.py │ │ ├── manager.py │ │ ├── notifs.py │ │ ├── payments.py │ │ ├── shares.py │ │ ├── tags.py │ │ └── users.py │ ├── data │ ├── alembic │ │ └── a30a10eb8528_groups_init.py │ ├── fixtures.py │ ├── models.py │ ├── scripts │ │ ├── clone.py │ │ ├── duplicates.py │ │ └── migrate.py │ └── seed.py │ ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_basics.py │ ├── test_bert.py │ ├── test_entries.py │ ├── test_habitica.py │ ├── test_influencers.py │ ├── test_perms.py │ ├── test_profiles.py │ └── test_tags.py │ └── utils │ ├── errors.py │ ├── pydantic │ ├── entries.py │ ├── fields.py │ ├── groups.py │ ├── payments.py │ ├── shares.py │ ├── tags.py │ ├── users.py │ ├── utils.py │ └── ws.py │ ├── settings.py │ └── tests │ ├── conftest.py │ ├── test_basics.py │ ├── test_notes.py │ └── test_shares.py ├── package.json ├── playwright.config.ts ├── schemas ├── admin.ts ├── api.ts ├── auth.ts ├── books.ts ├── entries.ts ├── events.ts ├── fields.ts ├── groups.ts ├── index.ts ├── insights.ts ├── notes.ts ├── notifs.ts ├── package.json ├── promptPresets.ts ├── routes.ts ├── shares.ts ├── stripe.ts ├── tags.ts ├── users.ts └── utils.ts ├── services ├── __init__.py ├── auth │ ├── appAuth.ts │ ├── triggers.ts │ └── wsAuthorizer.ts ├── aws │ ├── clients.ts │ ├── handlers.ts │ └── logs.ts ├── data │ ├── .gitignore │ ├── db.ts │ ├── dbSingleton.ts │ ├── migrate │ │ ├── .gitignore │ │ ├── README.md │ │ ├── first │ │ │ ├── 0000_salty_dark_beast.sql │ │ │ └── meta │ │ │ │ ├── 0000_snapshot.json │ │ │ │ └── _journal.json │ │ ├── migrate.ts │ │ ├── migrateCaller.ts │ │ ├── rest │ │ │ ├── 0000_salty_dark_beast.sql │ │ │ ├── 0001_misty_skaar.sql │ │ │ ├── 0002_flowery_kabuki.sql │ │ │ ├── 0003_spotty_franklin_richards.sql │ │ │ ├── 0004_pretty_vengeance.sql │ │ │ ├── 0005_watery_daimon_hellstrom.sql │ │ │ ├── 0006_gorgeous_wolfsbane.sql │ │ │ ├── 0007_secret_sebastian_shaw.sql │ │ │ ├── 0008_closed_mauler.sql │ │ │ ├── 0009_dark_umar.sql │ │ │ ├── 0010_colossal_silver_fox.sql │ │ │ ├── 0011_unusual_zemo.sql │ │ │ ├── 0012_material_karen_page.sql │ │ │ ├── 0013_striped_makkari.sql │ │ │ ├── 0014_nosy_blonde_phantom.sql │ │ │ ├── 0015_steep_piledriver.sql │ │ │ ├── 0016_thick_mister_fear.sql │ │ │ └── meta │ │ │ │ ├── 0000_snapshot.json │ │ │ │ ├── 0001_snapshot.json │ │ │ │ ├── 0002_snapshot.json │ │ │ │ ├── 0003_snapshot.json │ │ │ │ ├── 0004_snapshot.json │ │ │ │ ├── 0005_snapshot.json │ │ │ │ ├── 0006_snapshot.json │ │ │ │ ├── 0007_snapshot.json │ │ │ │ ├── 0008_snapshot.json │ │ │ │ ├── 0009_snapshot.json │ │ │ │ ├── 0010_snapshot.json │ │ │ │ ├── 0011_snapshot.json │ │ │ │ ├── 0012_snapshot.json │ │ │ │ ├── 0013_snapshot.json │ │ │ │ ├── 0014_snapshot.json │ │ │ │ ├── 0015_snapshot.json │ │ │ │ ├── 0016_snapshot.json │ │ │ │ └── _journal.json │ │ └── v2.sql │ ├── models │ │ ├── base.ts │ │ ├── books.ts │ │ ├── entries.ts │ │ ├── fields.ts │ │ ├── habitica.ts │ │ ├── insights.ts │ │ ├── notes.ts │ │ ├── shares.ts │ │ ├── tags.ts │ │ └── users.ts │ └── schemas │ │ ├── books.ts │ │ ├── booksShelf.ts │ │ ├── entries.ts │ │ ├── entriesTags.ts │ │ ├── fieldEntries.ts │ │ ├── fields.ts │ │ ├── influencers.ts │ │ ├── modelHypers.ts │ │ ├── notes.ts │ │ ├── payments.ts │ │ ├── people.ts │ │ ├── shares.ts │ │ ├── tags.ts │ │ ├── users.ts │ │ ├── utils.ts │ │ └── wsConnections.ts ├── main.ts ├── ml │ ├── node │ │ ├── ask.ts │ │ ├── books.ts │ │ ├── errors.ts │ │ ├── openai.ts │ │ ├── preprocess.ts │ │ ├── search.ts │ │ ├── summarize.ts │ │ ├── tableqa.ts │ │ ├── upsert.ts │ │ └── utils.ts │ └── python │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── ask.dockerfile │ │ ├── ask │ │ ├── __init__.py │ │ ├── main.py │ │ └── test_ask.py │ │ ├── behaviors.dockerfile │ │ ├── behaviors │ │ ├── __init__.py │ │ ├── db.py │ │ ├── influencers.py │ │ ├── main.py │ │ ├── tableqa.py │ │ └── xgb.py │ │ ├── books.dockerfile │ │ ├── books │ │ ├── __init__.py │ │ ├── init │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── docker-compose.yml │ │ │ ├── requirements.txt │ │ │ ├── to_embeddings.py │ │ │ └── to_pandas.py │ │ ├── main.py │ │ └── test_books.py │ │ ├── common │ │ ├── __init__.py │ │ ├── env.py │ │ └── util.py │ │ ├── dockerfiles.md │ │ ├── preprocess.dockerfile │ │ ├── preprocess │ │ ├── __init__.py │ │ ├── clean.py │ │ ├── fixtures │ │ │ ├── __init__.py │ │ │ ├── ai.html │ │ │ ├── cbt.html │ │ │ └── vr.html │ │ ├── main.py │ │ ├── test_clean.py │ │ └── test_main.py │ │ ├── store.dockerfile │ │ ├── store │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── cluster.py │ │ ├── main.py │ │ ├── search.py │ │ ├── store.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── init_test_data.py │ │ │ ├── test_cluster.py │ │ │ ├── test_search.py │ │ │ └── test_upsert.py │ │ └── upsert.py │ │ ├── summarize.dockerfile │ │ └── summarize │ │ ├── __init__.py │ │ ├── main.py │ │ └── test_summaries.py ├── package.json ├── requirements.txt ├── routes │ ├── admin │ │ └── index.ts │ ├── adminFns.ts │ ├── books │ │ └── index.ts │ ├── entries │ │ ├── index.test.ts │ │ └── index.ts │ ├── errors.ts │ ├── fields │ │ ├── habitica.ts │ │ └── index.ts │ ├── groups │ │ └── index.ts │ ├── index.ts │ ├── insights │ │ ├── index.test.ts │ │ └── index.ts │ ├── logAggregator.ts │ ├── notes │ │ └── index.ts │ ├── notifs │ │ └── index.ts │ ├── shares │ │ └── index.ts │ ├── stripe │ │ ├── README.md │ │ └── index.ts │ ├── tags │ │ └── index.ts │ ├── types.ts │ └── users │ │ ├── everything_request.test.ts │ │ └── index.ts ├── sst-env.d.ts ├── tests │ ├── .gitignore │ ├── setup_mock.spec.ts │ └── utils.ts └── tsconfig.json ├── sst.config.ts ├── stacks ├── Api.ts ├── Auth.ts ├── Logs.ts ├── Misc.ts ├── Ml.ts ├── Ses.ts ├── Shared.ts ├── Web.ts └── util.ts ├── tests ├── .gitignore ├── auth.spec.ts ├── entries.spec.ts ├── fields.spec.ts ├── insights.spec.ts ├── mock_entries.json ├── notes.spec.ts ├── premium.spec.ts ├── sharing.spec.ts ├── tags.spec.ts └── utils.ts ├── tsconfig.json ├── vitest.config.ts └── web ├── .gitignore ├── index.html ├── package.json ├── public ├── Gnothi_ShortnoLamp.svg ├── NewLogo.svg ├── README.md ├── ads │ └── headspace_anxious_optim.png ├── emails │ ├── images │ │ ├── image-1.png │ │ ├── image-2.png │ │ ├── image-3.png │ │ ├── image-4.png │ │ └── image-5.png │ ├── test.html │ ├── test2.html │ ├── test3.html │ └── welcome_email.html ├── favicon.ico ├── manifest.json ├── robots.txt └── screenshots │ ├── ask.png │ ├── books.png │ ├── entry.png │ ├── fields.png │ ├── fields_charts.png │ ├── fields_top_influencers.png │ ├── sharing.png │ ├── sharing_header.png │ ├── summarize.png │ └── themes.png ├── src ├── data │ ├── api │ │ └── index.tsx │ └── store │ │ ├── api.ts │ │ ├── app.ts │ │ ├── behaviors.ts │ │ ├── events.ts │ │ ├── index.ts │ │ └── sharing.ts ├── main.tsx ├── sst-env.d.ts ├── ui │ ├── App.scss │ ├── App │ │ ├── Account │ │ │ ├── People.tsx │ │ │ ├── PremiumModal.tsx │ │ │ ├── Profile.tsx │ │ │ ├── index.tsx │ │ │ └── zodiac.tsx │ │ ├── Behaviors │ │ │ ├── Analyze │ │ │ │ ├── Analyze.tsx │ │ │ │ ├── AnalyzeDisabled.tsx │ │ │ │ ├── Behavior.tsx │ │ │ │ ├── Behaviors.tsx │ │ │ │ ├── Charts.tsx │ │ │ │ └── TableQA.tsx │ │ │ ├── BehaviorName.tsx │ │ │ ├── Layout.tsx │ │ │ ├── Track │ │ │ │ ├── Advanced.tsx │ │ │ │ ├── Behavior.tsx │ │ │ │ ├── BehaviorEntry.tsx │ │ │ │ ├── DayChanger.tsx │ │ │ │ ├── Help │ │ │ │ │ ├── Custom.mdx │ │ │ │ │ ├── Dailies.mdx │ │ │ │ │ ├── Habits.mdx │ │ │ │ │ ├── Rewards.mdx │ │ │ │ │ └── Todos.mdx │ │ │ │ ├── Lane.tsx │ │ │ │ ├── SetupHabitica.tsx │ │ │ │ ├── Timer.tsx │ │ │ │ └── Track.tsx │ │ │ └── Upsert │ │ │ │ ├── AnalyzeAdvanced.tsx │ │ │ │ ├── BehaviorLane.tsx │ │ │ │ ├── BehaviorNotes.tsx │ │ │ │ ├── BehaviorType.tsx │ │ │ │ ├── BehaviorValue.tsx │ │ │ │ ├── DeleteButton.tsx │ │ │ │ ├── Help │ │ │ │ ├── DayPicker.mdx │ │ │ │ ├── DefaultValues.mdx │ │ │ │ ├── Lane.mdx │ │ │ │ ├── PeriodNumber.mdx │ │ │ │ ├── ResetEvery.mdx │ │ │ │ ├── ResetQuota.mdx │ │ │ │ ├── TrackingType.mdx │ │ │ │ ├── Type.mdx │ │ │ │ └── Value.mdx │ │ │ │ ├── ResetPeriods.tsx │ │ │ │ ├── ScoreAdvanced.tsx │ │ │ │ ├── TrackingType.tsx │ │ │ │ ├── TripleDots.tsx │ │ │ │ ├── Upsert.tsx │ │ │ │ ├── Utils.tsx │ │ │ │ └── useFormWatcher.tsx │ │ ├── Chat │ │ │ └── Messages.tsx │ │ ├── Entries │ │ │ ├── Layout.tsx │ │ │ ├── List │ │ │ │ ├── Entries.tsx │ │ │ │ ├── Teaser.tsx │ │ │ │ └── index.tsx │ │ │ ├── Modal.tsx │ │ │ ├── Notes │ │ │ │ ├── Create.tsx │ │ │ │ ├── List.tsx │ │ │ │ └── Notifs.tsx │ │ │ ├── Upsert │ │ │ │ ├── New.tsx │ │ │ │ ├── SuggestEntry.tsx │ │ │ │ └── Upsert.tsx │ │ │ └── View │ │ │ │ └── index.tsx │ │ ├── Groups │ │ │ ├── Layout.tsx │ │ │ ├── List │ │ │ │ ├── Modal.tsx │ │ │ │ ├── Toolbar.tsx │ │ │ │ └── index.tsx │ │ │ ├── Routes.tsx │ │ │ ├── Stripe.tsx │ │ │ ├── View │ │ │ │ ├── Edit.tsx │ │ │ │ ├── Entries.tsx │ │ │ │ ├── InviteMembers.tsx │ │ │ │ ├── Sidebar.tsx │ │ │ │ ├── Toolbar.tsx │ │ │ │ └── index.tsx │ │ │ └── utils.tsx │ │ ├── Insights │ │ │ ├── Filters │ │ │ │ ├── Search.tsx │ │ │ │ └── index.tsx │ │ │ ├── Insights │ │ │ │ ├── Admin.tsx │ │ │ │ ├── Ask.tsx │ │ │ │ ├── Behaviors.tsx │ │ │ │ ├── Books.tsx │ │ │ │ ├── Insights.tsx │ │ │ │ ├── Prompt │ │ │ │ │ ├── Prompt.tsx │ │ │ │ │ └── Selector.tsx │ │ │ │ ├── Summarize.tsx │ │ │ │ ├── Themes.tsx │ │ │ │ └── Utils.tsx │ │ │ └── Resources │ │ │ │ ├── Books.tsx │ │ │ │ ├── Therapists.tsx │ │ │ │ └── index.tsx │ │ ├── Layout │ │ │ ├── AppBar.tsx │ │ │ ├── Layout.tsx │ │ │ ├── Sidebar │ │ │ │ ├── Account.tsx │ │ │ │ ├── Community │ │ │ │ │ ├── Groups.tsx │ │ │ │ │ ├── Sharing.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Journal.tsx │ │ │ │ ├── Misc │ │ │ │ │ ├── Links.tsx │ │ │ │ │ ├── TopBooks.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Utils.tsx │ │ │ │ └── index.tsx │ │ │ └── UserListener.tsx │ │ ├── Sharing │ │ │ ├── Inbound │ │ │ │ └── index.tsx │ │ │ ├── Outbound │ │ │ │ ├── Form │ │ │ │ │ ├── Form.tsx │ │ │ │ │ ├── Groups.tsx │ │ │ │ │ └── Users.tsx │ │ │ │ ├── Item.tsx │ │ │ │ ├── List.tsx │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── Tags │ │ │ ├── Create.tsx │ │ │ ├── Form.tsx │ │ │ ├── List.tsx │ │ │ ├── Modal.tsx │ │ │ ├── Tags.tsx │ │ │ └── utils.tsx │ ├── Components │ │ ├── Accordions.tsx │ │ ├── AppBar.tsx │ │ ├── Banner.tsx │ │ ├── Dialog.tsx │ │ ├── Editor.tsx │ │ ├── Error.tsx │ │ ├── Form.tsx │ │ ├── Link.tsx │ │ ├── Misc.tsx │ │ ├── Routing.tsx │ │ ├── Sortable.tsx │ │ └── Tabs.tsx │ ├── Footer.tsx │ ├── Setup │ │ ├── Acknowledge.tsx │ │ ├── Auth.scss │ │ ├── Auth.tsx │ │ ├── Mui.tsx │ │ ├── Routing.tsx │ │ ├── Sentry.tsx │ │ └── index.tsx │ └── Static │ │ ├── Disclaimer.tsx │ │ ├── Privacy.tsx │ │ ├── Splash │ │ ├── Features │ │ │ ├── BehaviorTracking.tsx │ │ │ ├── Books.tsx │ │ │ ├── FeatureLayout.tsx │ │ │ ├── FreeVsPremiumBlurb.tsx │ │ │ ├── Hero_Features.tsx │ │ │ ├── MachineLearning.tsx │ │ │ ├── Organization.tsx │ │ │ ├── OrganizationBasicPlan.tsx │ │ │ ├── PlanComparison.tsx │ │ │ ├── PremPricingCTA.tsx │ │ │ ├── PremiumFeatureCards.tsx │ │ │ ├── Prompt.tsx │ │ │ ├── ThemesSummaries.tsx │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── Demo.tsx │ │ │ ├── DiscoverAI.tsx │ │ │ ├── Discover_Simple.tsx │ │ │ ├── Hero.tsx │ │ │ ├── HowItWorks.tsx │ │ │ ├── SignUp.tsx │ │ │ ├── Utils.tsx │ │ │ └── index.tsx │ │ ├── Layout.tsx │ │ ├── Old │ │ │ ├── Details.tsx │ │ │ ├── NewJournal.tsx │ │ │ ├── Overviews.tsx │ │ │ ├── TechandSoul.tsx │ │ │ └── WhatsNext.tsx │ │ ├── Utils.tsx │ │ └── store.ts │ │ ├── Terms.tsx │ │ └── Test │ │ ├── Sandbox.tsx │ │ └── Test.tsx ├── utils │ ├── config.ts │ └── utils.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── types ├── mdx.d.ts └── my-env.d.ts └── vite.config.ts /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /old_project/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/.dockerignore -------------------------------------------------------------------------------- /old_project/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/.editorconfig -------------------------------------------------------------------------------- /old_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/.gitignore -------------------------------------------------------------------------------- /old_project/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/docker-compose.yml -------------------------------------------------------------------------------- /old_project/gpu.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu.dockerfile -------------------------------------------------------------------------------- /old_project/gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu.yml -------------------------------------------------------------------------------- /old_project/gpu/.gitignore: -------------------------------------------------------------------------------- 1 | config.json 2 | catboost_info 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /old_project/gpu/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/app/__init__.py -------------------------------------------------------------------------------- /old_project/gpu/app/books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/app/books.py -------------------------------------------------------------------------------- /old_project/gpu/app/entries_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/app/entries_profiles.py -------------------------------------------------------------------------------- /old_project/gpu/app/nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/app/nlp.py -------------------------------------------------------------------------------- /old_project/gpu/app/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/app/run.py -------------------------------------------------------------------------------- /old_project/gpu/app/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/app/themes.py -------------------------------------------------------------------------------- /old_project/gpu/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/app/utils.py -------------------------------------------------------------------------------- /old_project/gpu/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/tests/conftest.py -------------------------------------------------------------------------------- /old_project/gpu/tests/copy_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/tests/copy_test.sh -------------------------------------------------------------------------------- /old_project/gpu/tests/lefnire_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/tests/lefnire_books.py -------------------------------------------------------------------------------- /old_project/gpu/tests/test_batching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/tests/test_batching.py -------------------------------------------------------------------------------- /old_project/gpu/tests/test_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/tests/test_books.py -------------------------------------------------------------------------------- /old_project/gpu/tests/test_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/tests/test_entries.py -------------------------------------------------------------------------------- /old_project/gpu/tests/test_influencers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/tests/test_influencers.py -------------------------------------------------------------------------------- /old_project/gpu/tests/test_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/tests/test_profiles.py -------------------------------------------------------------------------------- /old_project/gpu/tests/test_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/tests/test_qa.py -------------------------------------------------------------------------------- /old_project/gpu/tests/test_themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/gpu/tests/test_themes.py -------------------------------------------------------------------------------- /old_project/server.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server.dockerfile -------------------------------------------------------------------------------- /old_project/server/.gitignore: -------------------------------------------------------------------------------- 1 | data.db 2 | tmp/ 3 | mallet-2.0.8/ 4 | __pycache__ 5 | wiki/ 6 | 7 | -------------------------------------------------------------------------------- /old_project/server/app/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | __pycache__/ 3 | config.json -------------------------------------------------------------------------------- /old_project/server/app/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/analytics.py -------------------------------------------------------------------------------- /old_project/server/app/habitica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/habitica.py -------------------------------------------------------------------------------- /old_project/server/app/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/mail.py -------------------------------------------------------------------------------- /old_project/server/app/rest/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/rest/routes.py -------------------------------------------------------------------------------- /old_project/server/app/rest/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/rest/utils.py -------------------------------------------------------------------------------- /old_project/server/app/ws/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/auth.py -------------------------------------------------------------------------------- /old_project/server/app/ws/entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/entries.py -------------------------------------------------------------------------------- /old_project/server/app/ws/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/fields.py -------------------------------------------------------------------------------- /old_project/server/app/ws/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/groups.py -------------------------------------------------------------------------------- /old_project/server/app/ws/insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/insights.py -------------------------------------------------------------------------------- /old_project/server/app/ws/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/manager.py -------------------------------------------------------------------------------- /old_project/server/app/ws/notifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/notifs.py -------------------------------------------------------------------------------- /old_project/server/app/ws/payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/payments.py -------------------------------------------------------------------------------- /old_project/server/app/ws/shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/shares.py -------------------------------------------------------------------------------- /old_project/server/app/ws/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/tags.py -------------------------------------------------------------------------------- /old_project/server/app/ws/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/app/ws/users.py -------------------------------------------------------------------------------- /old_project/server/data/alembic/a30a10eb8528_groups_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/data/alembic/a30a10eb8528_groups_init.py -------------------------------------------------------------------------------- /old_project/server/data/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/data/fixtures.py -------------------------------------------------------------------------------- /old_project/server/data/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/data/models.py -------------------------------------------------------------------------------- /old_project/server/data/scripts/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/data/scripts/clone.py -------------------------------------------------------------------------------- /old_project/server/data/scripts/duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/data/scripts/duplicates.py -------------------------------------------------------------------------------- /old_project/server/data/scripts/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/data/scripts/migrate.py -------------------------------------------------------------------------------- /old_project/server/data/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/data/seed.py -------------------------------------------------------------------------------- /old_project/server/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /old_project/server/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/tests/conftest.py -------------------------------------------------------------------------------- /old_project/server/tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/tests/test_basics.py -------------------------------------------------------------------------------- /old_project/server/tests/test_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/tests/test_bert.py -------------------------------------------------------------------------------- /old_project/server/tests/test_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/tests/test_entries.py -------------------------------------------------------------------------------- /old_project/server/tests/test_habitica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/tests/test_habitica.py -------------------------------------------------------------------------------- /old_project/server/tests/test_influencers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/tests/test_influencers.py -------------------------------------------------------------------------------- /old_project/server/tests/test_perms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/tests/test_perms.py -------------------------------------------------------------------------------- /old_project/server/tests/test_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/tests/test_profiles.py -------------------------------------------------------------------------------- /old_project/server/tests/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/tests/test_tags.py -------------------------------------------------------------------------------- /old_project/server/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/errors.py -------------------------------------------------------------------------------- /old_project/server/utils/pydantic/entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/pydantic/entries.py -------------------------------------------------------------------------------- /old_project/server/utils/pydantic/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/pydantic/fields.py -------------------------------------------------------------------------------- /old_project/server/utils/pydantic/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/pydantic/groups.py -------------------------------------------------------------------------------- /old_project/server/utils/pydantic/payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/pydantic/payments.py -------------------------------------------------------------------------------- /old_project/server/utils/pydantic/shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/pydantic/shares.py -------------------------------------------------------------------------------- /old_project/server/utils/pydantic/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/pydantic/tags.py -------------------------------------------------------------------------------- /old_project/server/utils/pydantic/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/pydantic/users.py -------------------------------------------------------------------------------- /old_project/server/utils/pydantic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/pydantic/utils.py -------------------------------------------------------------------------------- /old_project/server/utils/pydantic/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/pydantic/ws.py -------------------------------------------------------------------------------- /old_project/server/utils/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/settings.py -------------------------------------------------------------------------------- /old_project/server/utils/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/tests/conftest.py -------------------------------------------------------------------------------- /old_project/server/utils/tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/tests/test_basics.py -------------------------------------------------------------------------------- /old_project/server/utils/tests/test_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/tests/test_notes.py -------------------------------------------------------------------------------- /old_project/server/utils/tests/test_shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/old_project/server/utils/tests/test_shares.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /schemas/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/admin.ts -------------------------------------------------------------------------------- /schemas/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/api.ts -------------------------------------------------------------------------------- /schemas/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/auth.ts -------------------------------------------------------------------------------- /schemas/books.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/books.ts -------------------------------------------------------------------------------- /schemas/entries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/entries.ts -------------------------------------------------------------------------------- /schemas/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/events.ts -------------------------------------------------------------------------------- /schemas/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/fields.ts -------------------------------------------------------------------------------- /schemas/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/groups.ts -------------------------------------------------------------------------------- /schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/index.ts -------------------------------------------------------------------------------- /schemas/insights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/insights.ts -------------------------------------------------------------------------------- /schemas/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/notes.ts -------------------------------------------------------------------------------- /schemas/notifs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/notifs.ts -------------------------------------------------------------------------------- /schemas/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/package.json -------------------------------------------------------------------------------- /schemas/promptPresets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/promptPresets.ts -------------------------------------------------------------------------------- /schemas/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/routes.ts -------------------------------------------------------------------------------- /schemas/shares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/shares.ts -------------------------------------------------------------------------------- /schemas/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/stripe.ts -------------------------------------------------------------------------------- /schemas/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/tags.ts -------------------------------------------------------------------------------- /schemas/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/users.ts -------------------------------------------------------------------------------- /schemas/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/schemas/utils.ts -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/auth/appAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/auth/appAuth.ts -------------------------------------------------------------------------------- /services/auth/triggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/auth/triggers.ts -------------------------------------------------------------------------------- /services/auth/wsAuthorizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/auth/wsAuthorizer.ts -------------------------------------------------------------------------------- /services/aws/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/aws/clients.ts -------------------------------------------------------------------------------- /services/aws/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/aws/handlers.ts -------------------------------------------------------------------------------- /services/aws/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/aws/logs.ts -------------------------------------------------------------------------------- /services/data/.gitignore: -------------------------------------------------------------------------------- 1 | !*.sql 2 | kysely-data-api 3 | -------------------------------------------------------------------------------- /services/data/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/db.ts -------------------------------------------------------------------------------- /services/data/dbSingleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/dbSingleton.ts -------------------------------------------------------------------------------- /services/data/migrate/.gitignore: -------------------------------------------------------------------------------- 1 | introspect.sh 2 | -------------------------------------------------------------------------------- /services/data/migrate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/README.md -------------------------------------------------------------------------------- /services/data/migrate/first/0000_salty_dark_beast.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/first/0000_salty_dark_beast.sql -------------------------------------------------------------------------------- /services/data/migrate/first/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/first/meta/0000_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/first/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/first/meta/_journal.json -------------------------------------------------------------------------------- /services/data/migrate/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/migrate.ts -------------------------------------------------------------------------------- /services/data/migrate/migrateCaller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/migrateCaller.ts -------------------------------------------------------------------------------- /services/data/migrate/rest/0000_salty_dark_beast.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/data/migrate/rest/0001_misty_skaar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0001_misty_skaar.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0002_flowery_kabuki.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0002_flowery_kabuki.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0003_spotty_franklin_richards.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0003_spotty_franklin_richards.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0004_pretty_vengeance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0004_pretty_vengeance.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0005_watery_daimon_hellstrom.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "users" ADD COLUMN "filter_days" integer; -------------------------------------------------------------------------------- /services/data/migrate/rest/0006_gorgeous_wolfsbane.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0006_gorgeous_wolfsbane.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0007_secret_sebastian_shaw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0007_secret_sebastian_shaw.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0008_closed_mauler.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0008_closed_mauler.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0009_dark_umar.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "users" ADD COLUMN "score" double precision DEFAULT 0; -------------------------------------------------------------------------------- /services/data/migrate/rest/0010_colossal_silver_fox.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "fields" ADD COLUMN "sort" integer DEFAULT 0; -------------------------------------------------------------------------------- /services/data/migrate/rest/0011_unusual_zemo.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "fields" ADD COLUMN "value" double precision DEFAULT 0; -------------------------------------------------------------------------------- /services/data/migrate/rest/0012_material_karen_page.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0012_material_karen_page.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0013_striped_makkari.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0013_striped_makkari.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0014_nosy_blonde_phantom.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0014_nosy_blonde_phantom.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0015_steep_piledriver.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/0015_steep_piledriver.sql -------------------------------------------------------------------------------- /services/data/migrate/rest/0016_thick_mister_fear.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "fields" ADD COLUMN "timer" integer DEFAULT 25; -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0000_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0001_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0002_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0003_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0003_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0004_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0004_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0005_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0005_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0006_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0006_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0007_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0007_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0008_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0008_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0009_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0009_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0010_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0010_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0011_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0011_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0012_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0012_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0013_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0013_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0014_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0014_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0015_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0015_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/0016_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/0016_snapshot.json -------------------------------------------------------------------------------- /services/data/migrate/rest/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/rest/meta/_journal.json -------------------------------------------------------------------------------- /services/data/migrate/v2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/migrate/v2.sql -------------------------------------------------------------------------------- /services/data/models/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/models/base.ts -------------------------------------------------------------------------------- /services/data/models/books.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/models/books.ts -------------------------------------------------------------------------------- /services/data/models/entries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/models/entries.ts -------------------------------------------------------------------------------- /services/data/models/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/models/fields.ts -------------------------------------------------------------------------------- /services/data/models/habitica.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/models/habitica.ts -------------------------------------------------------------------------------- /services/data/models/insights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/models/insights.ts -------------------------------------------------------------------------------- /services/data/models/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/models/notes.ts -------------------------------------------------------------------------------- /services/data/models/shares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/models/shares.ts -------------------------------------------------------------------------------- /services/data/models/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/models/tags.ts -------------------------------------------------------------------------------- /services/data/models/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/models/users.ts -------------------------------------------------------------------------------- /services/data/schemas/books.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/books.ts -------------------------------------------------------------------------------- /services/data/schemas/booksShelf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/booksShelf.ts -------------------------------------------------------------------------------- /services/data/schemas/entries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/entries.ts -------------------------------------------------------------------------------- /services/data/schemas/entriesTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/entriesTags.ts -------------------------------------------------------------------------------- /services/data/schemas/fieldEntries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/fieldEntries.ts -------------------------------------------------------------------------------- /services/data/schemas/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/fields.ts -------------------------------------------------------------------------------- /services/data/schemas/influencers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/influencers.ts -------------------------------------------------------------------------------- /services/data/schemas/modelHypers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/modelHypers.ts -------------------------------------------------------------------------------- /services/data/schemas/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/notes.ts -------------------------------------------------------------------------------- /services/data/schemas/payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/payments.ts -------------------------------------------------------------------------------- /services/data/schemas/people.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/people.ts -------------------------------------------------------------------------------- /services/data/schemas/shares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/shares.ts -------------------------------------------------------------------------------- /services/data/schemas/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/tags.ts -------------------------------------------------------------------------------- /services/data/schemas/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/users.ts -------------------------------------------------------------------------------- /services/data/schemas/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/utils.ts -------------------------------------------------------------------------------- /services/data/schemas/wsConnections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/data/schemas/wsConnections.ts -------------------------------------------------------------------------------- /services/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/main.ts -------------------------------------------------------------------------------- /services/ml/node/ask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/node/ask.ts -------------------------------------------------------------------------------- /services/ml/node/books.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/node/books.ts -------------------------------------------------------------------------------- /services/ml/node/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/node/errors.ts -------------------------------------------------------------------------------- /services/ml/node/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/node/openai.ts -------------------------------------------------------------------------------- /services/ml/node/preprocess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/node/preprocess.ts -------------------------------------------------------------------------------- /services/ml/node/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/node/search.ts -------------------------------------------------------------------------------- /services/ml/node/summarize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/node/summarize.ts -------------------------------------------------------------------------------- /services/ml/node/tableqa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/node/tableqa.ts -------------------------------------------------------------------------------- /services/ml/node/upsert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/node/upsert.ts -------------------------------------------------------------------------------- /services/ml/node/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/node/utils.ts -------------------------------------------------------------------------------- /services/ml/python/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/.dockerignore -------------------------------------------------------------------------------- /services/ml/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/.gitignore -------------------------------------------------------------------------------- /services/ml/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ml/python/ask.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/ask.dockerfile -------------------------------------------------------------------------------- /services/ml/python/ask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ml/python/ask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/ask/main.py -------------------------------------------------------------------------------- /services/ml/python/ask/test_ask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/ask/test_ask.py -------------------------------------------------------------------------------- /services/ml/python/behaviors.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/behaviors.dockerfile -------------------------------------------------------------------------------- /services/ml/python/behaviors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ml/python/behaviors/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/behaviors/db.py -------------------------------------------------------------------------------- /services/ml/python/behaviors/influencers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/behaviors/influencers.py -------------------------------------------------------------------------------- /services/ml/python/behaviors/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/behaviors/main.py -------------------------------------------------------------------------------- /services/ml/python/behaviors/tableqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/behaviors/tableqa.py -------------------------------------------------------------------------------- /services/ml/python/behaviors/xgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/behaviors/xgb.py -------------------------------------------------------------------------------- /services/ml/python/books.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/books.dockerfile -------------------------------------------------------------------------------- /services/ml/python/books/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ml/python/books/init/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/books/init/.gitignore -------------------------------------------------------------------------------- /services/ml/python/books/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/books/init/README.md -------------------------------------------------------------------------------- /services/ml/python/books/init/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ml/python/books/init/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/books/init/docker-compose.yml -------------------------------------------------------------------------------- /services/ml/python/books/init/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/books/init/requirements.txt -------------------------------------------------------------------------------- /services/ml/python/books/init/to_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/books/init/to_embeddings.py -------------------------------------------------------------------------------- /services/ml/python/books/init/to_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/books/init/to_pandas.py -------------------------------------------------------------------------------- /services/ml/python/books/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/books/main.py -------------------------------------------------------------------------------- /services/ml/python/books/test_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/books/test_books.py -------------------------------------------------------------------------------- /services/ml/python/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ml/python/common/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/common/env.py -------------------------------------------------------------------------------- /services/ml/python/common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/common/util.py -------------------------------------------------------------------------------- /services/ml/python/dockerfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/dockerfiles.md -------------------------------------------------------------------------------- /services/ml/python/preprocess.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/preprocess.dockerfile -------------------------------------------------------------------------------- /services/ml/python/preprocess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ml/python/preprocess/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/preprocess/clean.py -------------------------------------------------------------------------------- /services/ml/python/preprocess/fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/preprocess/fixtures/__init__.py -------------------------------------------------------------------------------- /services/ml/python/preprocess/fixtures/ai.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/preprocess/fixtures/ai.html -------------------------------------------------------------------------------- /services/ml/python/preprocess/fixtures/cbt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/preprocess/fixtures/cbt.html -------------------------------------------------------------------------------- /services/ml/python/preprocess/fixtures/vr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/preprocess/fixtures/vr.html -------------------------------------------------------------------------------- /services/ml/python/preprocess/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/preprocess/main.py -------------------------------------------------------------------------------- /services/ml/python/preprocess/test_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/preprocess/test_clean.py -------------------------------------------------------------------------------- /services/ml/python/preprocess/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/preprocess/test_main.py -------------------------------------------------------------------------------- /services/ml/python/store.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/store.dockerfile -------------------------------------------------------------------------------- /services/ml/python/store/.gitignore: -------------------------------------------------------------------------------- 1 | db 2 | -------------------------------------------------------------------------------- /services/ml/python/store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ml/python/store/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/store/cluster.py -------------------------------------------------------------------------------- /services/ml/python/store/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/store/main.py -------------------------------------------------------------------------------- /services/ml/python/store/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/store/search.py -------------------------------------------------------------------------------- /services/ml/python/store/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/store/store.py -------------------------------------------------------------------------------- /services/ml/python/store/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ml/python/store/tests/init_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/store/tests/init_test_data.py -------------------------------------------------------------------------------- /services/ml/python/store/tests/test_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/store/tests/test_cluster.py -------------------------------------------------------------------------------- /services/ml/python/store/tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/store/tests/test_search.py -------------------------------------------------------------------------------- /services/ml/python/store/tests/test_upsert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/store/tests/test_upsert.py -------------------------------------------------------------------------------- /services/ml/python/store/upsert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/store/upsert.py -------------------------------------------------------------------------------- /services/ml/python/summarize.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/summarize.dockerfile -------------------------------------------------------------------------------- /services/ml/python/summarize/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/ml/python/summarize/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/summarize/main.py -------------------------------------------------------------------------------- /services/ml/python/summarize/test_summaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/ml/python/summarize/test_summaries.py -------------------------------------------------------------------------------- /services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/package.json -------------------------------------------------------------------------------- /services/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/requirements.txt -------------------------------------------------------------------------------- /services/routes/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/admin/index.ts -------------------------------------------------------------------------------- /services/routes/adminFns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/adminFns.ts -------------------------------------------------------------------------------- /services/routes/books/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/books/index.ts -------------------------------------------------------------------------------- /services/routes/entries/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/entries/index.test.ts -------------------------------------------------------------------------------- /services/routes/entries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/entries/index.ts -------------------------------------------------------------------------------- /services/routes/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/errors.ts -------------------------------------------------------------------------------- /services/routes/fields/habitica.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/fields/habitica.ts -------------------------------------------------------------------------------- /services/routes/fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/fields/index.ts -------------------------------------------------------------------------------- /services/routes/groups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/groups/index.ts -------------------------------------------------------------------------------- /services/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/index.ts -------------------------------------------------------------------------------- /services/routes/insights/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/insights/index.test.ts -------------------------------------------------------------------------------- /services/routes/insights/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/insights/index.ts -------------------------------------------------------------------------------- /services/routes/logAggregator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/logAggregator.ts -------------------------------------------------------------------------------- /services/routes/notes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/notes/index.ts -------------------------------------------------------------------------------- /services/routes/notifs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/notifs/index.ts -------------------------------------------------------------------------------- /services/routes/shares/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/shares/index.ts -------------------------------------------------------------------------------- /services/routes/stripe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/stripe/README.md -------------------------------------------------------------------------------- /services/routes/stripe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/stripe/index.ts -------------------------------------------------------------------------------- /services/routes/tags/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/tags/index.ts -------------------------------------------------------------------------------- /services/routes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/types.ts -------------------------------------------------------------------------------- /services/routes/users/everything_request.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/users/everything_request.test.ts -------------------------------------------------------------------------------- /services/routes/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/routes/users/index.ts -------------------------------------------------------------------------------- /services/sst-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /services/tests/.gitignore: -------------------------------------------------------------------------------- 1 | mock_entries.json 2 | -------------------------------------------------------------------------------- /services/tests/setup_mock.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/tests/setup_mock.spec.ts -------------------------------------------------------------------------------- /services/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/tests/utils.ts -------------------------------------------------------------------------------- /services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/services/tsconfig.json -------------------------------------------------------------------------------- /sst.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/sst.config.ts -------------------------------------------------------------------------------- /stacks/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/stacks/Api.ts -------------------------------------------------------------------------------- /stacks/Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/stacks/Auth.ts -------------------------------------------------------------------------------- /stacks/Logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/stacks/Logs.ts -------------------------------------------------------------------------------- /stacks/Misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/stacks/Misc.ts -------------------------------------------------------------------------------- /stacks/Ml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/stacks/Ml.ts -------------------------------------------------------------------------------- /stacks/Ses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/stacks/Ses.ts -------------------------------------------------------------------------------- /stacks/Shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/stacks/Shared.ts -------------------------------------------------------------------------------- /stacks/Web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/stacks/Web.ts -------------------------------------------------------------------------------- /stacks/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/stacks/util.ts -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | results/ 2 | -------------------------------------------------------------------------------- /tests/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tests/auth.spec.ts -------------------------------------------------------------------------------- /tests/entries.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tests/entries.spec.ts -------------------------------------------------------------------------------- /tests/fields.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tests/fields.spec.ts -------------------------------------------------------------------------------- /tests/insights.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tests/insights.spec.ts -------------------------------------------------------------------------------- /tests/mock_entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tests/mock_entries.json -------------------------------------------------------------------------------- /tests/notes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tests/notes.spec.ts -------------------------------------------------------------------------------- /tests/premium.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tests/premium.spec.ts -------------------------------------------------------------------------------- /tests/sharing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tests/sharing.spec.ts -------------------------------------------------------------------------------- /tests/tags.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tests/tags.spec.ts -------------------------------------------------------------------------------- /tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tests/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/index.html -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/Gnothi_ShortnoLamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/Gnothi_ShortnoLamp.svg -------------------------------------------------------------------------------- /web/public/NewLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/NewLogo.svg -------------------------------------------------------------------------------- /web/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/README.md -------------------------------------------------------------------------------- /web/public/ads/headspace_anxious_optim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/ads/headspace_anxious_optim.png -------------------------------------------------------------------------------- /web/public/emails/images/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/emails/images/image-1.png -------------------------------------------------------------------------------- /web/public/emails/images/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/emails/images/image-2.png -------------------------------------------------------------------------------- /web/public/emails/images/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/emails/images/image-3.png -------------------------------------------------------------------------------- /web/public/emails/images/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/emails/images/image-4.png -------------------------------------------------------------------------------- /web/public/emails/images/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/emails/images/image-5.png -------------------------------------------------------------------------------- /web/public/emails/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/emails/test.html -------------------------------------------------------------------------------- /web/public/emails/test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/emails/test2.html -------------------------------------------------------------------------------- /web/public/emails/test3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/emails/test3.html -------------------------------------------------------------------------------- /web/public/emails/welcome_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/emails/welcome_email.html -------------------------------------------------------------------------------- /web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/favicon.ico -------------------------------------------------------------------------------- /web/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/manifest.json -------------------------------------------------------------------------------- /web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/robots.txt -------------------------------------------------------------------------------- /web/public/screenshots/ask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/screenshots/ask.png -------------------------------------------------------------------------------- /web/public/screenshots/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/screenshots/books.png -------------------------------------------------------------------------------- /web/public/screenshots/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/screenshots/entry.png -------------------------------------------------------------------------------- /web/public/screenshots/fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/screenshots/fields.png -------------------------------------------------------------------------------- /web/public/screenshots/fields_charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/screenshots/fields_charts.png -------------------------------------------------------------------------------- /web/public/screenshots/fields_top_influencers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/screenshots/fields_top_influencers.png -------------------------------------------------------------------------------- /web/public/screenshots/sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/screenshots/sharing.png -------------------------------------------------------------------------------- /web/public/screenshots/sharing_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/screenshots/sharing_header.png -------------------------------------------------------------------------------- /web/public/screenshots/summarize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/screenshots/summarize.png -------------------------------------------------------------------------------- /web/public/screenshots/themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/public/screenshots/themes.png -------------------------------------------------------------------------------- /web/src/data/api/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/data/api/index.tsx -------------------------------------------------------------------------------- /web/src/data/store/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/data/store/api.ts -------------------------------------------------------------------------------- /web/src/data/store/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/data/store/app.ts -------------------------------------------------------------------------------- /web/src/data/store/behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/data/store/behaviors.ts -------------------------------------------------------------------------------- /web/src/data/store/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/data/store/events.ts -------------------------------------------------------------------------------- /web/src/data/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/data/store/index.ts -------------------------------------------------------------------------------- /web/src/data/store/sharing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/data/store/sharing.ts -------------------------------------------------------------------------------- /web/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/main.tsx -------------------------------------------------------------------------------- /web/src/sst-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/sst-env.d.ts -------------------------------------------------------------------------------- /web/src/ui/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App.scss -------------------------------------------------------------------------------- /web/src/ui/App/Account/People.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Account/People.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Account/PremiumModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Account/PremiumModal.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Account/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Account/Profile.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Account/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Account/zodiac.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Account/zodiac.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Analyze/Analyze.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Analyze/Analyze.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Analyze/AnalyzeDisabled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Analyze/AnalyzeDisabled.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Analyze/Behavior.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Analyze/Behavior.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Analyze/Behaviors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Analyze/Behaviors.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Analyze/Charts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Analyze/Charts.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Analyze/TableQA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Analyze/TableQA.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/BehaviorName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/BehaviorName.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Layout.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/Advanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/Advanced.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/Behavior.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/Behavior.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/BehaviorEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/BehaviorEntry.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/DayChanger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/DayChanger.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/Help/Custom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/Help/Custom.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/Help/Dailies.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/Help/Dailies.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/Help/Habits.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/Help/Habits.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/Help/Rewards.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/Help/Rewards.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/Help/Todos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/Help/Todos.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/Lane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/Lane.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/SetupHabitica.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/SetupHabitica.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/Timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/Timer.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Track/Track.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Track/Track.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/AnalyzeAdvanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/AnalyzeAdvanced.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/BehaviorLane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/BehaviorLane.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/BehaviorNotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/BehaviorNotes.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/BehaviorType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/BehaviorType.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/BehaviorValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/BehaviorValue.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/DeleteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/DeleteButton.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Help/DayPicker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Help/DayPicker.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Help/DefaultValues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Help/DefaultValues.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Help/Lane.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Help/Lane.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Help/PeriodNumber.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Help/PeriodNumber.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Help/ResetEvery.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Help/ResetEvery.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Help/ResetQuota.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Help/ResetQuota.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Help/TrackingType.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Help/TrackingType.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Help/Type.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Help/Type.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Help/Value.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Help/Value.mdx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/ResetPeriods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/ResetPeriods.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/ScoreAdvanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/ScoreAdvanced.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/TrackingType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/TrackingType.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/TripleDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/TripleDots.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Upsert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Upsert.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/Utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/Utils.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Behaviors/Upsert/useFormWatcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Behaviors/Upsert/useFormWatcher.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Chat/Messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Chat/Messages.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/Layout.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/List/Entries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/List/Entries.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/List/Teaser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/List/Teaser.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/List/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/Modal.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/Notes/Create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/Notes/Create.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/Notes/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/Notes/List.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/Notes/Notifs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/Notes/Notifs.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/Upsert/New.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/Upsert/New.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/Upsert/SuggestEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/Upsert/SuggestEntry.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/Upsert/Upsert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/Upsert/Upsert.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Entries/View/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Entries/View/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/Layout.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/List/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/List/Modal.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/List/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/List/Toolbar.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/List/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/Routes.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/Stripe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/Stripe.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/View/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/View/Edit.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/View/Entries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/View/Entries.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/View/InviteMembers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/View/InviteMembers.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/View/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/View/Sidebar.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/View/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/View/Toolbar.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/View/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/View/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Groups/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Groups/utils.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Filters/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Filters/Search.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Filters/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Filters/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Insights/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Insights/Admin.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Insights/Ask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Insights/Ask.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Insights/Behaviors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Insights/Behaviors.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Insights/Books.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Insights/Books.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Insights/Insights.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Insights/Insights.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Insights/Prompt/Prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Insights/Prompt/Prompt.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Insights/Prompt/Selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Insights/Prompt/Selector.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Insights/Summarize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Insights/Summarize.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Insights/Themes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Insights/Themes.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Insights/Utils.tsx: -------------------------------------------------------------------------------- 1 | export interface Insight { 2 | view: 'list' | string 3 | } 4 | -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Resources/Books.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Resources/Books.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Resources/Therapists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Resources/Therapists.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Insights/Resources/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Insights/Resources/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/AppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/AppBar.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Layout.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Sidebar/Account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Sidebar/Account.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Sidebar/Community/Groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Sidebar/Community/Groups.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Sidebar/Community/Sharing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Sidebar/Community/Sharing.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Sidebar/Community/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Sidebar/Community/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Sidebar/Journal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Sidebar/Journal.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Sidebar/Misc/Links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Sidebar/Misc/Links.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Sidebar/Misc/TopBooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Sidebar/Misc/TopBooks.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Sidebar/Misc/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Sidebar/Misc/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Sidebar/Utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Sidebar/Utils.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/Sidebar/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Layout/UserListener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Layout/UserListener.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Sharing/Inbound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Sharing/Inbound/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Sharing/Outbound/Form/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Sharing/Outbound/Form/Form.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Sharing/Outbound/Form/Groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Sharing/Outbound/Form/Groups.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Sharing/Outbound/Form/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Sharing/Outbound/Form/Users.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Sharing/Outbound/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Sharing/Outbound/Item.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Sharing/Outbound/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Sharing/Outbound/List.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Sharing/Outbound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Sharing/Outbound/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Sharing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Sharing/index.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Tags/Create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Tags/Create.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Tags/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Tags/Form.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Tags/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Tags/List.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Tags/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Tags/Modal.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Tags/Tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Tags/Tags.tsx -------------------------------------------------------------------------------- /web/src/ui/App/Tags/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/App/Tags/utils.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Accordions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Accordions.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/AppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/AppBar.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Banner.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Dialog.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Editor.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Error.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Form.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Link.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Misc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Misc.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Routing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Routing.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Sortable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Sortable.tsx -------------------------------------------------------------------------------- /web/src/ui/Components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Components/Tabs.tsx -------------------------------------------------------------------------------- /web/src/ui/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Footer.tsx -------------------------------------------------------------------------------- /web/src/ui/Setup/Acknowledge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Setup/Acknowledge.tsx -------------------------------------------------------------------------------- /web/src/ui/Setup/Auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Setup/Auth.scss -------------------------------------------------------------------------------- /web/src/ui/Setup/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Setup/Auth.tsx -------------------------------------------------------------------------------- /web/src/ui/Setup/Mui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Setup/Mui.tsx -------------------------------------------------------------------------------- /web/src/ui/Setup/Routing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Setup/Routing.tsx -------------------------------------------------------------------------------- /web/src/ui/Setup/Sentry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Setup/Sentry.tsx -------------------------------------------------------------------------------- /web/src/ui/Setup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Setup/index.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Disclaimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Disclaimer.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Privacy.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/BehaviorTracking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/BehaviorTracking.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/Books.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/Books.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/FeatureLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/FeatureLayout.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/FreeVsPremiumBlurb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/FreeVsPremiumBlurb.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/Hero_Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/Hero_Features.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/MachineLearning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/MachineLearning.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/Organization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/Organization.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/OrganizationBasicPlan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/OrganizationBasicPlan.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/PlanComparison.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/PlanComparison.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/PremPricingCTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/PremPricingCTA.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/PremiumFeatureCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/PremiumFeatureCards.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/Prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/Prompt.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/ThemesSummaries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/ThemesSummaries.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Features/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Features/index.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Home/Demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Home/Demo.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Home/DiscoverAI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Home/DiscoverAI.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Home/Discover_Simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Home/Discover_Simple.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Home/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Home/Hero.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Home/HowItWorks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Home/HowItWorks.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Home/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Home/SignUp.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Home/Utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Home/Utils.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Home/index.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Layout.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Old/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Old/Details.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Old/NewJournal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Old/NewJournal.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Old/Overviews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Old/Overviews.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Old/TechandSoul.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Old/TechandSoul.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Old/WhatsNext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Old/WhatsNext.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/Utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/Utils.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Splash/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Splash/store.ts -------------------------------------------------------------------------------- /web/src/ui/Static/Terms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Terms.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Test/Sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Test/Sandbox.tsx -------------------------------------------------------------------------------- /web/src/ui/Static/Test/Test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/ui/Static/Test/Test.tsx -------------------------------------------------------------------------------- /web/src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/utils/config.ts -------------------------------------------------------------------------------- /web/src/utils/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/utils/utils.tsx -------------------------------------------------------------------------------- /web/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/src/vite-env.d.ts -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/tsconfig.node.json -------------------------------------------------------------------------------- /web/types/mdx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/types/mdx.d.ts -------------------------------------------------------------------------------- /web/types/my-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/types/my-env.d.ts -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocdevel/gnothi/HEAD/web/vite.config.ts --------------------------------------------------------------------------------