-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move all JS stuff to frontend directory.
- Loading branch information
Showing
8 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
web: gunicorn project.wsgi --workers 2 --log-file - --bind 0.0.0.0:8000 | ||
worker: ./manage.py run_huey --skip-checks | ||
frontend: npm run watch | ||
frontend: npm --prefix frontend run watch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"scripts": { | ||
"build": "tailwindcss build --minify -i site.css -c tailwind.config.js -o ../static/site.css", | ||
"watch": "tailwindcss build -i site.css -c tailwind.config.js -o ../static/site.css --watch" | ||
}, | ||
"engines": { | ||
"node": "18.x" | ||
}, | ||
"devDependencies": { | ||
"autoprefixer": "^10.4.2", | ||
"postcss": "^8.4.31", | ||
"tailwindcss": "^3.0.23" | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module.exports = { | ||
content: [ | ||
'./templates/**/*.html', | ||
'../templates/**/*.html', | ||
], | ||
theme: { | ||
colors: { | ||
|
This file was deleted.
Oops, something went wrong.