Skip to content

Commit 1641ac5

Browse files
Updated README.
1 parent 2eefb46 commit 1641ac5

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ ifeq ($(OS_SYSNAME),linux)
1616
OS_MACHINE = x64
1717
endif
1818

19+
# The appropriate Tailwind package for your OS will attempt to be automatically determined.
20+
# If this is not working, hard-code the package you want using these options:
21+
# https://github.com/tailwindlabs/tailwindcss/releases/latest
1922
TAILWIND_PACKAGE = tailwindcss-$(OS_SYSNAME)-$(OS_MACHINE)
2023

2124
.PHONY: help

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,13 @@ cd pagoda
183183

184184
Several optional tools are available to make development easier for you. This includes [Ent](#orm) code-generator, for generating ORM code, [Air](https://github.com/air-verse/air) CLI, to provide [live reloading](#live-reloading), and [Tailwind CSS](https://tailwindcss.com/docs/installation/tailwind-cli) CLI, to generate CSS.
185185

186-
If you wish to use Tailwind (with or without [Daisy UI](https://daisyui.com/)), modify the [Makefile](https://github.com/mikestefanello/pagoda/blob/main/Makefile), and adjust the `TAILWIND_PACKAGE` variable to reference the proper package for your operating system. By default, it's set to work with Linux x64. If you want to use Tailwind but don't want to use the standalone CLI, ie `npm`, modify the `tailwind-install` and `css` _make targets_ based on your preferences.
186+
If you don't want to use Tailwind and/or [Daisy UI](https://daisyui.com/), or don't want to use Tailwind's standalone CLI, but rather `npm`, for example, modify the `tailwind-install` and `css` [make targets](https://github.com/mikestefanello/pagoda/blob/main/Makefile) based on your preferences. If the script cannot automatically determine the proper Tailwind package to install, modify the `TAILWIND_PACKAGE` variable to match your operating system.
187187

188188
To easily install all tools, run `make install` from the root of the repo. There are also separate _make targets_ for each tool (run `make help` to list all targets).
189189

190190
### Create an admin account
191191

192-
To access the [admin panel](#admin-panel), you must log in with an admin user and to create your first admin user account, you must use the command-line. Execute `make admin [email protected]` from the root of the codebase, and an admin account will be generated using that email address. The console will print the randomly-generated password for the account.
192+
To access the [admin panel](#admin-panel), you must log in with an admin user and to create your first admin user account, you must use the command-line. Execute `make admin [email protected]` from the root of the codebase, and an admin account will be generated using that email address. The console will print the randomly generated password for the account.
193193

194194
Once you have one admin account, you can use that account to manage other users and admins from within the UI.
195195

0 commit comments

Comments
 (0)