Installation

1. Create your project folder and cd into it

cd projectfolder

2. Now create a virtual environment named env

python -m venv env

3. Activate the virtual environment

On Windows

env\Scripts\activate.bat

On Linux/Mac

source env/bin/activate

4. Install picomet , copier and django

pip install picomet copier django

5. Generate the project

picomet startproject

6. Install the project requirements

pip install -r requirements/dev.txt

If using Tailwind

npm i

7. Start the development server

python manage.py runserver

Now go to http://localhost:8000 with your web browser to see it running.