Integrate three js project with django project

I have two separate projects three JS and Django so I want to integrate both projects, so I need help regarding the configuration of the Django project with three JS. Thanks

There’s really nothing to do from the Django side. Three.js is a JavaScript library that runs in the browser, Django runs on the server.

You would include the three.js library in your template as another JavaScript resource, the same way you would with any other JavaScript library.

What sort of “integration” are you looking for?

2 Likes