Strapi Headless CMS Tutorial
34:28
3 жыл бұрын
Пікірлер
@gokhanozdemir8970
@gokhanozdemir8970 5 күн бұрын
Loved the details. Thank you!
@SuperHuman748
@SuperHuman748 15 күн бұрын
How to apply validations to model or request body ??
@SuperHuman748
@SuperHuman748 15 күн бұрын
How to apply validations for the request body or to the model object??
@indiemusicradio
@indiemusicradio Ай бұрын
very nice tutorial. solved a problem I had - setting the host to the docker-compose name
@sanketsingh5786
@sanketsingh5786 Ай бұрын
really good intro , valid even after 3 years
@oracleking4252
@oracleking4252 Ай бұрын
Dude. Where did you get the context from? As in "context.people.length
@nafyaddachasa9360
@nafyaddachasa9360 Ай бұрын
You’re a treasure🤌🏽
@antrikshchaudhary2548
@antrikshchaudhary2548 Ай бұрын
So I created a Dockerfile which seeds my DB and then starts my server. Now I wrote a simple docker-compose.yaml exactly like yours. But when I do docker-compose up --build -d it first tries to build my dockerfile instead of starting the DB. causing the docker build to fail. ``` services: db: image: 'postgres' environment: POSTGRES_PASSWORD: 'postgres' POSTGRES_USER: 'postgres' volumes: - data:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres"] interval: 5s timeout: 5s retries: 5 server: build: . ports: - '4000:4000' environment: POSTGRES_DOMAIN: 'db' depends_on: db: condition: service_healthy volumes: data: ``` and here is my dockerfile ``` FROM elixir:1.16.1 ENV MIX_ENV=dev # Install dependencies RUN mix local.hex --force && \ mix local.rebar --force # Set up the working directory WORKDIR /app # Copy the source code into the container COPY . . # Install dependencies RUN mix deps.get && \ mix compile # Compile the release RUN mix release # Seed Database RUN mix ecto.setup # Expose the Phoenix port EXPOSE 4000 # Start the Phoenix server CMD ["_build/dev/rel/hinet/bin/hinet", "start"] ```
@Halid-pl1to
@Halid-pl1to 2 ай бұрын
really clear and best explanation thank you a lot for your best explanation.
@marcosfitzsimons
@marcosfitzsimons 2 ай бұрын
thanks SR!
@Tester-scratch
@Tester-scratch 2 ай бұрын
Unwatchable on a small device - why dedicate 90% of the screen to static nothingness? A pity
@abdoseadaa
@abdoseadaa 3 ай бұрын
very well explained also your Arabic is very good 🤍
@user-ty5sw1fw8i
@user-ty5sw1fw8i 3 ай бұрын
Thanks a lot. You are so good at teaching
@lukewelden950
@lukewelden950 3 ай бұрын
I just wanted to say thank you for creating this tutorial. I was struggling with a project on Codecademy until I came across this video. This video is great for people who learn from implementing tooling via a working project!
@user-xf7mi8sw1w
@user-xf7mi8sw1w 3 ай бұрын
I have two repos one is for node and another is for react so how can i deploy both in one instance can you please make a video on that if possible - please reply the comment
@Rahul-rn8hs
@Rahul-rn8hs 4 ай бұрын
i want my file to be sent to a different service through graphQL in react the target service expects file in binary data format. do you have solution for this
@Leilani777
@Leilani777 4 ай бұрын
Awesome tutorial! Learned so much in such a short amount of time
@manjulaguneratne6439
@manjulaguneratne6439 4 ай бұрын
This was great! Thank you sir
@zenwaygames
@zenwaygames 4 ай бұрын
It would be good if you update this course!
@mahendrasinhgohil44
@mahendrasinhgohil44 4 ай бұрын
This library sucks in type definitions
@HHHanant
@HHHanant 5 ай бұрын
Hi great video, need your help in one question. I have two DBs in mysql. In DB1 we have person table and DB2 we have gender table. I have to do association between DB1.person and DB2.gender. can you help me with this.
@user-ym1jt5sq1t
@user-ym1jt5sq1t 5 ай бұрын
thanks a lot man for your efforts, it really helped me
@user-wk8xr9hi2e
@user-wk8xr9hi2e 5 ай бұрын
This is great, really informative
@arfinarif2798
@arfinarif2798 5 ай бұрын
thank you. You saved my life <3
@YashPatil-sy9sk
@YashPatil-sy9sk 5 ай бұрын
Amazing tutorial. Kudos to you!!!
@captainsaleh3444
@captainsaleh3444 6 ай бұрын
the minimum thing I can say it's really awesome
@sowmocoding5740
@sowmocoding5740 6 ай бұрын
| INCASE YOUR SCREEN IS BLANK AFTER USING PERSIST | store = devtools(store); store = persist(store, { name: "user_settings" }); // change to this line The video is currently 2 years old, `persist` function has been changed since. So, if you are watching this later on, and having the blank screen or no persistence issue, just add a object {name: "anyNameYouWishHere"} after the store in persist method [ persist(store, { name: "people" }) ]. Will fix any issue.
@Juniorkpabitey
@Juniorkpabitey 6 ай бұрын
You have really made my deployment simple for me. Can you briefly make simple detail on Postgres database, if that's the database someone is using?
@sweta2920
@sweta2920 7 ай бұрын
hi ya when iam trying to start at functions it showing to upgrade my plan what i have to do
@khizer3528
@khizer3528 7 ай бұрын
Great
@pnel
@pnel 7 ай бұрын
This was great, thanks++++
@halilrodoplu5043
@halilrodoplu5043 7 ай бұрын
that was amazing tutorial thx for your guide and help
@abhirambehera7731
@abhirambehera7731 7 ай бұрын
very nice and helpful please provide github repository
@craigleppan7164
@craigleppan7164 7 ай бұрын
FANTASTIC: well done. What you have done in 20 minutes takes ages to do in RTK. THANKS!
@warzonehacks4915
@warzonehacks4915 8 ай бұрын
I just can not believe that those big websites that have multi languages are using this technique, that would take years and a lot of coding to do it
@wajdwael8775
@wajdwael8775 8 ай бұрын
You have a clear way of explaining, just making it simple and straightforward. I have been not interested in a coding tutorial for a really long time 6Mons or something, my passion is here again! Thanks.
@jaironacurenatuy5936
@jaironacurenatuy5936 8 ай бұрын
Bro really you are the best , thank u
@serkantarcin
@serkantarcin 8 ай бұрын
Great tutorial. Explained everything clearly and without wasting any time.
@khosrora3990
@khosrora3990 8 ай бұрын
How to send image in GraphQL with formData?
@babayaga5266
@babayaga5266 9 ай бұрын
Awesome tutorial. Just what i was looking for days. Thanks alot
@m-qz2mi
@m-qz2mi 9 ай бұрын
you are perfect . the most useful video I have seen on KZbin
@garikmelqonyan6011
@garikmelqonyan6011 9 ай бұрын
Informative, qualitative and `lightweight` tutorials. Thank you man
@garikmelqonyan9130
@garikmelqonyan9130 9 ай бұрын
Haven't watched the rest of the series yet, but if it doesn't have refresh-token functionality, it would be in high demand
@garikmelqonyan9130
@garikmelqonyan9130 9 ай бұрын
Cool tutorial
@garikmelqonyan9130
@garikmelqonyan9130 9 ай бұрын
Good job, bro
@binukbe4401
@binukbe4401 9 ай бұрын
You are really a great teacher bro. i like the way you explain things, clear and consise, but really looking forward for full course on zustand! and Thanks for the tutorial!
@pooja_pandya
@pooja_pandya 9 ай бұрын
what about server part
@vince530
@vince530 10 ай бұрын
the way how you adore their homepage at the intro made me subscribe to your channel ahhahahahahahahaha
@ianpropst-campbell6028
@ianpropst-campbell6028 10 ай бұрын
This was a very helpful tutorial. Thank you for making this video! Best sequelize resource I have encountered so far. If you felt like it, it would be helpful to see a tutorial demonstrating how to implement many to many relationships in sequelize.
@FinckenStien23
@FinckenStien23 10 ай бұрын
hi can you say your theme name ?