mirror of
https://github.com/wsvincent/awesome-django.git
synced 2025-02-25 09:28:40 +00:00
Compare commits
3 Commits
9d02059948
...
38ff547b97
Author | SHA1 | Date | |
---|---|---|---|
|
38ff547b97 | ||
|
371d4bc9ea | ||
|
aa9bd3d04d |
1
.gitignore
vendored
1
.gitignore
vendored
@ -64,6 +64,7 @@ _site/
|
|||||||
assets/development.css
|
assets/development.css
|
||||||
build
|
build
|
||||||
dist
|
dist
|
||||||
|
docker-compose.override.yml
|
||||||
node_modules
|
node_modules
|
||||||
package-lock.json
|
package-lock.json
|
||||||
vendor
|
vendor
|
||||||
|
10
_config.yml
10
_config.yml
@ -52,13 +52,15 @@ color_scheme: django
|
|||||||
heading_anchors: true
|
heading_anchors: true
|
||||||
|
|
||||||
footer_content: >-
|
footer_content: >-
|
||||||
Please consider supporting Django by making a donation to the
|
<iframe src="https://django-news.com/embed?color1=ffffff&color2=092e20&color_bg_button=092e20&color_border=ccc&color_button=ffffff&color_links=979797&color_terms=808080&title=Subscribe+to+Django+News" width="450" height="310" frameborder="0" style="max-width: 100%"></iframe>
|
||||||
|
|
||||||
|
<p>Please consider supporting Django by making a donation to the
|
||||||
<a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
|
<a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
|
||||||
sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
|
sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
|
||||||
or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.
|
or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.</p>
|
||||||
|
|
||||||
Awesome Django is not associated with the Django Software Foundation.
|
<p>Awesome Django is not associated with the Django Software Foundation.<br>
|
||||||
Django is a registered trademark of the Django Software Foundation.
|
Django is a registered trademark of the Django Software Foundation.</p>
|
||||||
|
|
||||||
# Footer last edited timestamp
|
# Footer last edited timestamp
|
||||||
last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
|
last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
|
||||||
|
7
docker-compose.override.yml.example
Normal file
7
docker-compose.override.yml.example
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
services:
|
||||||
|
|
||||||
|
devd:
|
||||||
|
# platform: linux/amd64
|
||||||
|
|
||||||
|
jekyll:
|
||||||
|
# platform: linux/amd64
|
@ -1,5 +1,3 @@
|
|||||||
version: "3"
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
devd:
|
devd:
|
||||||
@ -7,6 +5,7 @@ services:
|
|||||||
command: --livewatch
|
command: --livewatch
|
||||||
expose:
|
expose:
|
||||||
- 8000
|
- 8000
|
||||||
|
init: true
|
||||||
ports:
|
ports:
|
||||||
- 8000:8000
|
- 8000:8000
|
||||||
volumes:
|
volumes:
|
||||||
@ -19,6 +18,7 @@ services:
|
|||||||
- BUNDLE_PATH=/usr/local/bundle
|
- BUNDLE_PATH=/usr/local/bundle
|
||||||
expose:
|
expose:
|
||||||
- 4000
|
- 4000
|
||||||
|
init: true
|
||||||
ports:
|
ports:
|
||||||
- 4000:4000
|
- 4000:4000
|
||||||
volumes:
|
volumes:
|
||||||
|
11
justfile
11
justfile
@ -4,12 +4,16 @@
|
|||||||
@alex:
|
@alex:
|
||||||
npx alex README.md
|
npx alex README.md
|
||||||
|
|
||||||
|
@bootstrap:
|
||||||
|
pip install --upgrade pip pip-tools
|
||||||
|
pip install --upgrade --requirement requirements.in
|
||||||
|
|
||||||
@build:
|
@build:
|
||||||
just toc
|
just toc
|
||||||
bundle exec jekyll build
|
bundle exec jekyll build
|
||||||
|
|
||||||
@down:
|
@down:
|
||||||
just down
|
docker-compose down
|
||||||
|
|
||||||
@lint:
|
@lint:
|
||||||
-curlylint _layouts/
|
-curlylint _layouts/
|
||||||
@ -19,7 +23,10 @@
|
|||||||
# modd --file=modd.conf
|
# modd --file=modd.conf
|
||||||
just up ""
|
just up ""
|
||||||
|
|
||||||
@up *ARGS="-d":
|
@start *ARGS="-d":
|
||||||
|
just up {{ ARGS }}
|
||||||
|
|
||||||
|
@up *ARGS:
|
||||||
docker-compose up {{ ARGS }}
|
docker-compose up {{ ARGS }}
|
||||||
|
|
||||||
@toc:
|
@toc:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user