⏳ Under development
Getting started -
- Clone repo with your project name
git clone [email protected]:farhanmasud/wagtail-tailwind-starter.git your-project-name
- Setup .env file following the example env file
- Make all bash scripts executable with
find . -type f -iname "*.sh" -exec chmod +x {} \;
- Run
bash update-git-remote.sh
script to remove existing git remote link (of this repo) and update with your on git repo link. Copy your remote URL from GitHub and run the bash script, it'll propmt to enter the new link, paste and hit Enter. - Setup database [requires step 2] with
bash setup-db.sh
- Setup venv and install dependencies with
bash setup-venv-pip-tools.sh
- Activate virtual environment with
source venv/bin/activate
- Install tailwind dependencies with
python manage.py tailwind install
- Run migrations with
python manage.py migrate
- Collect static
python manage.py collectstatic --no-input