From 89fc66231f55538ddd75fe8f5ee0572953d10f7e Mon Sep 17 00:00:00 2001 From: bach Date: Mon, 17 Mar 2025 22:52:48 +0100 Subject: [PATCH] .env --- Readme.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index 14c0f32..5adc3ec 100644 --- a/Readme.md +++ b/Readme.md @@ -57,8 +57,8 @@ cd /opt/glitchtip git clone https://gitlab.com/glitchtip/glitchtip-backend.git cd /opt/glitchtip/glitchtip-backend git checkout tags/v4.2.5 -python3 -m venv env -source env/bin/activate +python3 -m venv .venv +source .venv/bin/activate pip install --upgrade setuptools pip wheel cython uv uv sync ``` @@ -67,7 +67,7 @@ uv sync https://glitchtip.com/documentation/install#configuration ```shel -vim env +vim .env ``` ```ini @@ -87,6 +87,7 @@ GLITCHTIP_DOMAIN="http://frontlog.figli.io" #### migrate db ```shell +export $(cat .env | xargs) manage.py migrate ```