Skip to content

Instantly share code, notes, and snippets.

View Mufaddal1125's full-sized avatar
๐Ÿ“š
Learning

Mufaddal Patanwala Mufaddal1125

๐Ÿ“š
Learning
  • Cleverflow
  • Mumbai, India.
View GitHub Profile
setState(() {
// change the size of the container
height = 300;
width = 300;
});
@Mufaddal1125
Mufaddal1125 / docker-compose.yml
Last active March 16, 2024 14:59
Django server with postgres and redis
version: "3.8"
services:
web:
command:
["sh", "-c", "python manage.py migrate && python manage.py runserver"]
volumes:
- .:/app
working_dir: /app
ports: