From 687e1f6462342b400aef885f7f16aacc8adc5d53 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Thu, 29 Jun 2023 23:24:27 +0000 Subject: [PATCH] Update Readme --- README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index da9efdf..002033d 100644 --- a/README.md +++ b/README.md @@ -19,15 +19,26 @@ FOSSDB is an open-source web application that helps users find, contribute, and pip install -r requirements.txt ``` 3. Enter your `SECRET_KEY` and database information into `config.json` file. -4. Run database migrations: +4. Install and build tailwind. +```sh +python manage.py tailwind install +``` +```sh +python manage.py tailwind build +``` +5. Run database migrations: ```sh python manage.py migrate ``` -5. Create a superuser: +6. Collect static files +```sh +python manage.py collectstatic +``` +7. Create a superuser: ```sh python manage.py createsuperuser ``` -6. Run the development server: +8. Run the development server: ```sh python manage.py runserver ```