A raytracer app where the user can create a 3D image of geometric shapes by providing vertices, position, color and even material of the objects in the scene. link
- Clone this repository.
- Install the requirements:
$ pip install -r requirements.txt
. - Open a second terminal window and start a local RabbitMQ server:
$ rabbitmq-server
. - Open a third terminal window and starta Celery worker:
$ celery worker -A app.celery --loglevel=info
. - Start the Flask application on your original terminal window:
$ python app.py
. - Finally, go to
http://localhost:5000/
.