README updated

This commit is contained in:
zwnk 2025-01-16 17:27:35 -03:00
parent e591d0f409
commit b4cb57fee1
2 changed files with 7 additions and 1 deletions

View file

@ -1,6 +1,6 @@
# backend/Dockerfile
FROM python:3.9-slim
RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan -p 222 git.impstyle.com >> ~/.ssh/known_hosts
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

6
README.md Normal file
View file

@ -0,0 +1,6 @@
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
django-admin startproject todo_project .
python manage.py startapp todospython -m venv venv