PricingBlog

Help forum

  • fe_rojas-1458814316005560351

    FeRojas

    2

    10 hours ago

    Deploying different app instances/versions with different env variables
    Is there an easy way to run the same app from a single repo as multiple instances, each with different environment variables and connected to different subdomains?

    Use case: I want to deploy identical versions of a web app (under same Nordcraft project), but each connected to a different subdomain and backend instance. The goal is to isolate different tenants so each business has its own subdomain and dedicated backend instance.

    I know that global formulas could be use like a env variable (but expose to the client). Could they be used dynamically—so that based on the subdomain the app connects for example to a different SUPABASE_PROJECT_URL and SUPABASE_ANON_KEY (global formulas), so each subdomain connects to different Supabase projects? Any advice on this would be appreciated.
  • binayek._89441-1458352237775687732

    binayek._89441

    0

    1 day ago

    Problem in storing auth-token in session cookie
    I was watching the No Code Coder CRM building tutorial, where I faced this problem of storing in a session cookie. I found the same problem posted previously in the comments, and it says it is fixed. What should I be doing?
  • nathandh.-1458173024673988679

    nathandh

    6

    2 days ago

    Question about Challenge 3
    In the 3rd challenge (with repeating country list), there's a step to bind the input variable to the search parameter in the API call. Looks like:

    ilike.%

    What does this string represent?
  • nick.repetun-1458041784818077706

    Nikita Repetun

    2

    2 days ago

    Change account email
    I want to change email on the account, but system doesn't allow. How can i solve this?
  • technikobst-1457413749446017024

    Marcel

    6

    4 days ago

    select bound to a variable wont show the right option
    I have a select where I have bound the value to a variable. However, after a reload, this select no longer shows the correct value but always falls back to the first option. I checked everything, the variable or value is set correctly. There seems to be a timing issue with the select as it works fine with text bound to the same variable. Unfortunately I can't think of any way to solve the problem (in Nordcraft) anymore.
  • uunicode-1457358242459029514

    unicodes

    2

    4 days ago

    Does Nordcraft uses a static IP address for the proxy service?
    I'm considering to add the proxy IP address to supabase whitelist in order to limit access to the database.
    Does Nordcraft uses static IP address or it changes?
  • arttnov-1457318023365918973

    ArtTnoV

    🐞1
    3

    4 days ago

    Can't access to Nordcraft Editor (app.nordcraft.com)
    When I press "Open app", or go straight to app.nordcraft.com - it redirects to 404 page
  • tinsoldiers-1454081469344518215

    Tinsoldier

    3

    13 days ago

    Supabase Graphql
    When I connect the service and go to editor, it shows all the collections but selecting a collection gives no data even thought public select is on.
  • benjamin.h-1453524356125692028

    Ben H

    5

    15 days ago

    what is the scope of style variables?
    can someone clarify the expected scope of style variables?

    i declared some style variables at the root element of the page i'm working in. inside that root div, i can see them available in the style panel as expected. however, in children of this div, sometimes they seem available and sometimes not.

    for example, inside one child component, referencing --font-color works as expected.

    however, in a different child component, referencing --font-color-secondary is not working.

    are there rules regarding where these declared style variables can be used?
  • knamuora-1453022295248343081

    knamuora

    3

    16 days ago

    Filepond Integration
    Hi, i've been stuck for some time on this issue, while integrating filepond's custom file picker. In setup i've an action initializing filepond and all the logic which works fine, having only one argument of elementId targeting the input element and having these events: onFileSelected and onUploadError.

    On onFileSelected, i'm passing these values: {"name":"video.mp4","type":"video/mp4","fileObject":{}}
    The issue is in a workflow i'm only obtaining name and type, the fileObject(that should contain binary data) is always returning empty.

    I'd appreaciate if anyone would help me resolve this. Thank you!
  • miles1991-1452661044563415110

    Miles

    11

    17 days ago

    format date - YYYY-MM-DD
    I'm trying to output todays date in the format YYYY-MM-DD to set a max attribute as todays date in a date input.

    Can't figure out how to do this and neither can the AI. It seems like it should be such a simple setting of something...I'm sure I'm missing it.

    Image is of what the AI suggested. Side note - Is the AI making up functions that don't exist? 🤔 😅
  • klevelandbishop-1452105174549270602

    Kleveland Bishop

    3

    18 days ago

    302 infinite loop on /login route
    If you head to my site wrkflo.ai, its stuck continuously redirecting. Same happens on development paths e.g. https://b-wrkflo.toddle.site/login

    please help when available !
  • j.ulian4976-1451511423241949336

    J.ulian

    5

    20 days ago

    Script content not SSR?
    Hi, why isn't the result of this simple formula visible in the page source (but available in the dev tools element tree)? Many thanks, guess there is a simple explanation for this...
  • dublin_18748-1451186294427357297

    Dublin

    23

    21 days ago

    httponly
    How should I properly extract the token from my API response? My backend returns the authentication token, but I'm not sure what the correct formula path should be in the "Set HttpOnly cookie" Value parameter.

    Why is the Authorization header trying to get a cookie during the login request itself? Should this header be removed entirely from the login API configuration?

    What's the best practice for handling form submission with API calls in Nordcraft? Should I use the form's submit event or the button's click event?

    How can I conditionally set the cookie only when login is successful? Currently, the cookie action runs in onCompleted regardless of whether authentication succeeded or failed.

    Expected Behavior:
    User enters credentials and clicks Login
    API call is made to backend
    If successful, token is stored in HttpOnly cookie
    User is redirected to /gri-management
    If failed, user sees an error message
  • baba_bambule-1450462934621880382

    BabaBambule

    20

    23 days ago

    use color-mix with variables
    So basically a follow up to this post

    https://discord.com/channels/972416966683926538/1266378893292732436/1266381383425720351

    I want to add color-mix to my theme and using it like this
    color-mix(in, oklab, #E85002, 80%, #FFFFFF, 20%)

    already works, but I'd like to replace the fixed color values for var(--brand) and var(--white)

    but writing
    color-mix(in, oklab, var(--brand), 80%, var(--white), 20%)
    always converts to
    color-mix(in, oklab, --brand, 80%, --white, 20%)

    and doesn't work anymore. Is that just not possible yet or am I missing something?