Write blog posts on the web with Tina CMS and Astro!

Поделиться
HTML-код
  • Опубликовано: 7 ноя 2024

Комментарии • 17

  • @Germplanting
    @Germplanting Месяц назад +3

    Great explanation, was wondering how I would go about setting this combo up.

  • @zmorphy
    @zmorphy Год назад +6

    I hope that someday you upload a second part of how the deployment would be and then continue editing with tina, Good video is the only one on youtube you deserve the best in the world for your initiatives.

    • @shadowstack
      @shadowstack  Год назад +2

      Very kind of you! If I have time I will make part 2. The good news is not much more is required for the deployment and editing.

    • @zmorphy
      @zmorphy Год назад

      @@shadowstack 🙏🥹Great

  • @abidibnazam4462
    @abidibnazam4462 11 месяцев назад +1

    Awesome video man, I am waiting to get more frequent content from this channel.

  • @unity_12
    @unity_12 Год назад +1

    Super! Let's have more videos related to Astro ❤‍🔥❤‍🔥

  • @advokats086
    @advokats086 Год назад +2

    Maestro write a tutorial on how to create pagination in project astro... Please !!!!

  • @ArnyDesktop
    @ArnyDesktop Год назад +1

    3:25 Hello good video when I do the whole process I get the following error I ask if you have any knowledge about why this happens to me. :
    Unknown Syntax Error: Extraneous positional argument ("dev'").
    $ tinacms dev [--experimentalData] [--isomorphicGitBridge] [-p,--port #0] [--datalayer-port #0] [-c,--command #0] [--rootPath #0] [-v,--verbose] [--noSDK] [--noTelemetry] [-w,--watchFolders #0] [--noWatch] [--outputSearchIndexPath #0

    • @shadowstack
      @shadowstack  Год назад

      Try and run this in the directory: rm -rf node_modules && npm install ...Also make sure you copied the dev command exactly into the scripts of package.json: "dev": "tinacms dev -c 'astro dev'",

    • @ArnyDesktop
      @ArnyDesktop Год назад +1

      @@shadowstack it didn't work for me but it does when i run npx tinacms dev -c "astro dev --port 4321". i must have some problem :( but is it wrong to run it this way?

    • @shadowstack
      @shadowstack  Год назад

      @@ArnyDesktop I think its fine, weird that you have to specific port 4321 as I didnt have to. Glad its working in some capacity. You should be able to adjust the dev script in package.json now with the command that works for you

    • @frangnz
      @frangnz 6 месяцев назад +1

      I know it's very late, but the following worked for me.
      "dev": "tinacms dev -c \"astro dev\""
      I found it in the Astro documentation.

    • @travestheberge3253
      @travestheberge3253 4 месяца назад +1

      @@frangnz that worked for me too!