Welcome to Salekcodes!
Salekcodes is an open-source personal website being actively developed using Django and TailwindCSS.
-
Create an
.env
file based on the.env.example
file. -
Build the image and start the container:
docker compose up --build
# activate virtual environment:
python -m venv .venv && source .venv/bin/activate
# install python requirements:
pip install pip-tools -U
make update
# install npm dependencies:
npm install
Minify the CSS:
npx tailwindcss -i ./static/css/styles.css -o ./static/css/build.css --minify
Run the test suite:
tox -e local