Skip to content

Instantly share code, notes, and snippets.

View fx-biocoder's full-sized avatar
🏠
Working from home

Facundo Martínez fx-biocoder

🏠
Working from home
View GitHub Profile
@fx-biocoder
fx-biocoder / Docker.md
Last active September 28, 2025 16:33
Useful Docker commands

Build Docker container

$ docker build --tag IMAGENAME --file YOURDOCKERFILE .

Run container in the background and assign a name

@fx-biocoder
fx-biocoder / DjangoSASS.md
Last active September 16, 2023 23:25
Using SCSS/SASS on Django

Using SASS in a Django project with django-libsass and django_compressor

Note: this is a simplified version of the article "How to use SCSS/SASS in your Django project (Python Way)" written by Michael Yin.

1. Setting a new Django project

# Setting up a virtual environment with pipenv
$ pipenv install
$ pipenv shell