Virtual environment for python is created, so if your loaded files will reside in project folder, and wont clutter APPDATA (Windows) ?
@james-willett4 күн бұрын
Yes, when you create a Python virtual environment inside your project folder, it will isolate all the installed packages and dependencies within that environment. This means that the files related to the virtual environment (e.g., Python executables, pip, and any installed packages) will reside in the project folder itself, and nott clutter global directories like APPDATA on Windows.
@neo-mashiro5 күн бұрын
Thanks for the great video, this is really helpful. For the Github Actions though, I don't think the caching step is set up correctly because the ".cache" folder just doesn't exist. If you jump into the action logs, you will see something like this: Warning: Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved.
@james-willett4 күн бұрын
Thanks for commenting. I think the ".cache" folder gets created earlier in the video when we did `pip install `or `mkdocs build`
@tillcarlos6647 күн бұрын
Wow, I love this video style. It's well edited and well spoken!
@james-willett4 күн бұрын
Thanks so much for this feedback - highly appreciated.
@alyonachmil97818 күн бұрын
Thanks. It was very useful.
@james-willett4 күн бұрын
Glad it was helpful!
@rijutsu11 күн бұрын
A quick note to say that I've spent the better part of the past three days using this video to build my own set of pages and I can't thank you enough. The presentation, the links, the code examples, the chapters/timestamps in the video, and just so much of this was wildly helpful. Thank you so much for your effort! :D
@james-willett7 күн бұрын
Thanks for taking the time to write this comment. Lots more content planned ☺️
@mikeball495912 күн бұрын
Superb video, thank you. When I get to the last step though I'm getting Page not found on the URL rather than the documentation. Any ideas?
@james-willett7 күн бұрын
Check the GitHub settings , maybe you missed setting to the new branch ?
@soymadip16 күн бұрын
i wanna put the docs in a docs branch and wannna deploy from there. is this possible?
@james-willett4 күн бұрын
Yes its possible. By default, MkDocs uses the gh-pages branch for deployment. However, you can change this behavior by specifying the remote-branch option in the mkdocs.yml configuration file or by passing it as a command-line argument. For example, if you want to deploy from the docs branch, you can run: mkdocs gh-deploy --remote-branch docs Make sure to also update the branch in the GitHub settings when you are configuring GitHub Pages
@CoolDownMati18 күн бұрын
great video!
@abepeterson18 күн бұрын
What setting do we implement so every time I push to github it stops resetting my custom URL! I have been trying for weeks, I even added the CNAME.txt to the docs directory and still, when I do a push it drops the custom URL. The CNAME folder shows the URL, but no resolution unless I go to the repo github page settings and set it again.
@james-willett4 күн бұрын
Sorry to hear you are having this problem. It's hard for me to diagnose without seeing your repo, but theres a few things you might want to try: 1. Ensure the CNAME File is in the Correct Location The CNAME file should be in your source directory (e.g., docs/) so that it gets copied to the root of the built site during deployment. 2. Modify Your GitHub Actions or Deployment Script GitHub Actions might be overwriting or exclude the CNAME file during each deployment. You can modify your workflow to ensure that the CNAME file is always included in the deployment. You can add a step to ensure that the CNAME file is copied into the build output before deploying, e.g: jobs: deploy: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: '3.x' - name: Install dependencies run: pip install mkdocs mkdocs-material - name: Build site run: mkdocs build - name: Add CNAME file run: echo "yourcustomdomain.com" > ./site/CNAME - name: Deploy to GitHub Pages run: mkdocs gh-deploy --force 3. Check GitHub Pages Settings Check your repository's GitHub Pages settings, Go to Settings > Pages. Make sure that under "Custom domain," your custom domain is listed and saved. Hope that helps...
@sivaprakash837520 күн бұрын
there is a certificate issue with gatling when trying to run the test.
@gabrielbronzattimoro795320 күн бұрын
That is an incredible content 🎉 Thank you so much for sharing this with us!
@james-willett18 күн бұрын
Glad you enjoyed it!
@MillDora-i5g24 күн бұрын
Witting Park
@DorisAtwood-g7l24 күн бұрын
Weimann Meadows
@TommyTammy-d9m24 күн бұрын
Schneider Ports
@Kerensky5526 күн бұрын
Excellent video 👍👍
@james-willett22 күн бұрын
Thank you 👍
@MsJaneJack27 күн бұрын
Thank you. Very useful video
@james-willett22 күн бұрын
Glad it was helpful!
@mreduarАй бұрын
Super video! Thanks for this!
@james-willett22 күн бұрын
Glad you liked it!
@mdlsvenssonАй бұрын
Incredibly concise and well put together video. Thank a lot!
@james-willett22 күн бұрын
Glad it was helpful!
@VrejGamingАй бұрын
One of the best MkDocs tutorials I have watched! Incredibly helpful, thank you!
@james-willettАй бұрын
Appreciate that - thank you ! 🙏
@lockdown50559Ай бұрын
Man, you made this video just in time for me! I think that you are an amazing presenter.
@james-willettАй бұрын
Thanks - appreciate your feedback ☺️
@HKTECH-001Ай бұрын
I really enjoyed your video! How can I insert pictures or videos into documents? Also, could you explain how to add a blog to it? I tried going through their official documentation on GitHub, but I found it overwhelming. Your teaching style is clear and easy to follow, and I appreciate how you explain things. It's very easy to understand. Please help me add pictures, videos, and hyperlinks to the documents? Also, I'm curious about how you added a thumbnail to your "Getting Started with Material for MkDocs" post.
@RonenSiganАй бұрын
How many levels can a ToC have (left pane navigation)? For example, can these amount of levels be supported: APIs -> Weather Forecast Requests-> Daily --> Centigrade Thanks
@james-willettАй бұрын
Good question - I’m pretty sure you can nest multiple times. Make sure you enable “navigation.sections” in your config . See squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#navigation-sections
@shadow_1363Ай бұрын
Great video, very helpful!
@james-willettАй бұрын
Glad to hear that! Thanks for letting me know :)
@Daniel-opsАй бұрын
Thanks for the video James! just started with mkdocs to host my personal blog and loving it so far.
@james-willettАй бұрын
Great to hear! Please share a link , would love to take a look
@wondermannier4398Ай бұрын
Great! I enjoyed this video to the point of watching it twice. It would be nice to see your video tutorials on stress and endurance testing using Gatling. Thanks
@james-willettАй бұрын
🧐 Transform your documentation with MkDocs and the Material theme! Follow this guide to publish your portal online in no time. Want more content like this? Let me know, and I'll dive deeper in future tutorials!
@francisxavier3890Ай бұрын
Thanks; I liked the way you explained. I get this error when I tried it from my end: ERROR c.intuit.karate.core.FeatureParser - not a valid feature file: examples/puzzletosolve.feature - mismatched input 'w' expecting <EOF>
@james-willettАй бұрын
Thanks for the feedback. I'd need to see your code to debug the error, but it looks like you might have a typo in your feature file
@LifeCoachAbhiАй бұрын
Awesome video to get started on Gatling. Crisp and precise. Thanks a ton. 🙏
@jatlineurАй бұрын
can i use itu for blogging?
@james-willettАй бұрын
Yes its amazing for a blog. Hoping to create a video for this soon.
@yulianneshevАй бұрын
Hello, the vide is really nice, I watched 2 times. What can I do when I want to create a performance test but in order to visit the website I need credentials? There is a certain page in the website which I want to test with a lot of users concurrently. I guess it would need authorization and token to be added somehow, maybe even more things.
@james-willettАй бұрын
Glad you enjoyed the video. Yes Gatling can handle all these things. Check my other video if you need help
@RomanDodin2 ай бұрын
A very good companion to the official docs. Kudos!
@james-willett2 ай бұрын
Thanks Roman - much appreciated :)
@marcusblackhall43062 ай бұрын
Great video. Thanks 👍
@james-willett2 ай бұрын
Glad you liked it! Appreciate the feedback - what else would you like to see covered?
@charlie35022 ай бұрын
Excellent tutorial, James. I am unable to see the dark mode toggle button on my mkdocs site. What might be the reason?
@james-willett2 ай бұрын
Thanks Charlie - glad it was helpful. Honestly I'm not sure without seeing your code. However, I am currently working on a brand new getting started video for MkDocs Material where I cover this, so following that might help. It should be out in a week or so.
@kannansingaravelu2 ай бұрын
how do I link a '.py' file to list the docstring using mkdocs. Also, how to rearrange the order of nav menus?
@james-willett2 ай бұрын
I'm not sure I understand the docstring question, could you elaborate? For reordering see if github.com/squidfunk/mkdocs-material/discussions/3482 is helpful
@bryceshirley92852 ай бұрын
Thanks for your video! It was super helpful :) I've had issues rendering html... Do any of these features and plugins in the yml file cause issues when rendering images using html in your markdown files? <p align="center"> <img src="image1.png" alt="image 1" height="100"> <img src="image2.png" alt="image 2" height="100"> </p> I can't seem to get the above to render (the images are in the docs directly with the markdown file)
@james-willett2 ай бұрын
Thanks for the kind words! I'm not aware of any issues with regards to rendering and plugin to be honest... I'm actually working on an updated version of this tutorial that should be out in a next next or two - so I'll keep an eye out for any issues around this in the latest version of the plugins
@farkalitusman1442 ай бұрын
Nice video and thanks James for your good effort.
@james-willett2 ай бұрын
Glad you enjoyed it - thanks for commenting :)
@mikedandreaChFC3 ай бұрын
was this recorded with that tool? I have not seen how to make the camera fill the frame...
@james-willettАй бұрын
Partly yes, but I also used Premier Pro though for some of it
@papunmohanty59683 ай бұрын
great setup, looks cool 😎 love to see how your day look like when you do your day work and also when you do recordings and operates those cool gadgets
@james-willett2 ай бұрын
Got it! Thanks for letting me know. I have the video planned in my pipeline amongst some other new projects :)
@Tamahome883 ай бұрын
Hello there, I joined a new project and decided to use Gatling with JS for the load testing. It's a really interesting opportunity for testers, who are used to work with JS.
@james-willett2 ай бұрын
Good choice! Let me know how it goes!
@ProAttique3 ай бұрын
I recently got screen studio. Overall its a great recorder but there are a few cons i identified. 1- no pause unpause shortcuts 2- no further shortcuts optimization 3- no camera adjustment with keyframes on different segments. For example, if i set cam position at one place then there is no option to move it to left or right or any other place during the entire recorded video 4- system audio mixing with external mic audio. No separate channels to record audio 5- rendering time is way longer than normal screen recorders such as OBS 6- editing timeline sometimes creates zoom in out problems 7- heats up even my mac m2 and takes huge part of RAM and GPU 8- no livestream options available 9- no option to remove silences filler words etc as it’s an editor too Good luck though it has kinda great features too
@_boris3 ай бұрын
Got this recommended in my feed, awesome production quality, keep up the good work James In the meanwhile I’ll check out the other videos on the channel Appreciate your work!
@james-willett2 ай бұрын
Thanks Boris - really appreciate you taking the time to watch and comment. Anything in particular you would like to see covered?
@m.chowdhury41963 ай бұрын
Superb! Really liked that so much was covered in 20 minutes. Just a quick question - does the JavaScript version use more resources compared to the Scala version, for a relatively large test, say with 1000 vusers? Any info on the resource consumption will be appreciated.
@james-willett3 ай бұрын
Thanks for the feedback. So I asked the Gatling team this question around a month ago, and they didn’t yet have any profiling data to compare the versions . With that being said , the JS version is essentially a wrapper on top of the original Scala code , so I would expect the resource consumption to be similar
@m.chowdhury41963 ай бұрын
@@james-willett Thanks so much for your response! Great to know that resource consumption in the JS version is similar to the original Scala version
@waldo48153 ай бұрын
Great video as usual. Glad to see you're uploading again!
@james-willett3 ай бұрын
Thanks - really appreciate it . And im also pleased to be back uploading ☺️
@ashanberuwalage3 ай бұрын
Amazing tutorial James. 🎈 Clear explanation.
@james-willett3 ай бұрын
💡Gatling JavaScript is a game-changer for load testing! Let me know your thoughts on this video and what else you'd like me to explore!
@mrzkipr3 ай бұрын
this is amazing, non technical person would easily understand the code. Thanks James!
@james-willett3 ай бұрын
Thank you!!
@ptrthomas3 ай бұрын
wow, this is great 🔥 thanks James !
@james-willett3 ай бұрын
🔥 Karate is an incredibly powerful and flexible tool for all your Test Automation needs - let me know if you enjoyed this video, and what else you want me to cover!
@mr_possible61973 ай бұрын
So this only applies to API testing? If not, could you illustrate on the UI part as well please? Thanks alot
@james-willett3 ай бұрын
@@mr_possible6197this video just covers api testing yes - I’ll look at creating a follow up video for UI testing if that’s interesting for you 😊
@mr_possible61973 ай бұрын
@@james-willett Oh Yes! Cheers!!
@MaheshJoshi_wellington3 ай бұрын
This is amazing James ! I want to try and show demo at karate at my work I shall try this cheers
@james-willett3 ай бұрын
@@MaheshJoshi_wellingtongreat to hear - let me know how it goes 😊