Skip to content

Commit 50c4359

Browse files
committed
Init fresh 2025.djangocon.us repo based on durham.djangocon.us
0 parents  commit 50c4359

File tree

192 files changed

+20432
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+20432
-0
lines changed

.editorconfig

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.{py,rst,ini}]
12+
indent_size = 4
13+
indent_style = space
14+
15+
[*.py]
16+
line_length = 120
17+
multi_line_output = 3
18+
19+
[*.{css,html,js,json,liquid,yml,yaml}]
20+
indent_size = 2
21+
indent_style = space
22+
23+
[*.md]
24+
indent_size = 4
25+
indent_style = space
26+
trim_trailing_whitespace = false
27+
28+
[justfile]
29+
indent_size = 4
30+
indent_style = space
31+
32+
[{Makefile,modd.conf}]
33+
indent_style = tab
+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
steps:
16+
- uses: actions/checkout@v3
17+
18+
- name: Setup Node
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: "20"
22+
23+
- name: Persist npm cache
24+
uses: actions/cache@v3
25+
with:
26+
path: ~/.npm
27+
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
28+
29+
- name: Persist Eleventy .cache
30+
uses: actions/cache@v3
31+
with:
32+
path: ./.cache
33+
key: ${{ runner.os }}-eleventy-fetch-cache
34+
35+
- name: Install dependencies
36+
run: npm install
37+
38+
- name: Build
39+
run: npm run build
40+
41+
- name: Deploy
42+
uses: peaceiris/actions-gh-pages@v3
43+
with:
44+
github_token: ${{ secrets.GITHUB_TOKEN }}
45+
publish_dir: ./dist
46+
publish_branch: gh-pages

.gitignore

+137
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
.pnpm-debug.log*
9+
10+
# Diagnostic reports (https://nodejs.org/api/report.html)
11+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12+
13+
# Runtime data
14+
pids
15+
*.pid
16+
*.seed
17+
*.pid.lock
18+
19+
# Directory for instrumented libs generated by jscoverage/JSCover
20+
lib-cov
21+
22+
# Coverage directory used by tools like istanbul
23+
coverage
24+
*.lcov
25+
26+
# nyc test coverage
27+
.nyc_output
28+
29+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30+
.grunt
31+
32+
# Bower dependency directory (https://bower.io/)
33+
bower_components
34+
35+
# node-waf configuration
36+
.lock-wscript
37+
38+
# Compiled binary addons (https://nodejs.org/api/addons.html)
39+
build/Release
40+
41+
# Dependency directories
42+
node_modules/
43+
jspm_packages/
44+
45+
# Snowpack dependency directory (https://snowpack.dev/)
46+
web_modules/
47+
48+
# TypeScript cache
49+
*.tsbuildinfo
50+
51+
# Optional npm cache directory
52+
.npm
53+
54+
# Optional eslint cache
55+
.eslintcache
56+
57+
# Optional stylelint cache
58+
.stylelintcache
59+
60+
# Microbundle cache
61+
.rpt2_cache/
62+
.rts2_cache_cjs/
63+
.rts2_cache_es/
64+
.rts2_cache_umd/
65+
66+
# Optional REPL history
67+
.node_repl_history
68+
69+
# Output of 'npm pack'
70+
*.tgz
71+
72+
# Yarn Integrity file
73+
.yarn-integrity
74+
75+
# dotenv environment variable files
76+
.env
77+
.env.development.local
78+
.env.test.local
79+
.env.production.local
80+
.env.local
81+
82+
# parcel-bundler cache (https://parceljs.org/)
83+
.cache
84+
.parcel-cache
85+
86+
# Next.js build output
87+
.next
88+
out
89+
90+
# Nuxt.js build / generate output
91+
.nuxt
92+
dist
93+
94+
# Gatsby files
95+
.cache/
96+
# Comment in the public line in if your project uses Gatsby and not Next.js
97+
# https://nextjs.org/blog/next-9-1#public-directory-support
98+
# public
99+
100+
# vuepress build output
101+
.vuepress/dist
102+
103+
# vuepress v2.x temp and cache directory
104+
.temp
105+
.cache
106+
107+
# Docusaurus cache and generated files
108+
.docusaurus
109+
110+
# Serverless directories
111+
.serverless/
112+
113+
# FuseBox cache
114+
.fusebox/
115+
116+
# DynamoDB Local files
117+
.dynamodb/
118+
119+
# TernJS port file
120+
.tern-port
121+
122+
# Stores VSCode versions used for testing VSCode extensions
123+
.vscode-test
124+
125+
# yarn v2
126+
.yarn/cache
127+
.yarn/unplugged
128+
.yarn/build-state.yml
129+
.yarn/install-state.gz
130+
.pnp.*
131+
132+
# System fiels
133+
.DS_Store
134+
135+
# python virtualenv
136+
.venv/
137+
__pycache__/

.nojekyll

Whitespace-only changes.

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2025.djangocon.us

CODE_OF_CONDUCT.md

+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# Code of Conduct
2+
3+
DjangoCon US is dedicated to providing a fun harassment-free conference experience for everyone, regardless of gender, gender identity, sexual orientation, disability, physical appearance, body size, race, or religion.
4+
5+
Be kind to others. Do not insult or put down other attendees. Behave professionally.
6+
7+
Remember that harassment and sexist, racist, or exclusionary jokes are not appropriate for DjangoCon US.
8+
9+
Attendees violating these rules may be asked to leave the conference without a refund at the sole discretion of the conference organizers.
10+
11+
Thank you for helping make this a welcoming, friendly event for all.
12+
13+
## Full Code of Conduct
14+
15+
_To make clear what is expected, all delegates/attendees, speakers,
16+
exhibitors, organizers and volunteers at any DjangoCon US event are required
17+
to conform to the following Code of Conduct. Organizers will enforce this code
18+
throughout the event._
19+
20+
### What the conference is
21+
22+
DjangoCon US is a community conference intended for networking and
23+
collaboration in the developer community.
24+
25+
We value the participation of each member of the Django community and want all
26+
attendees to have an enjoyable and fulfilling experience. Accordingly, all
27+
attendees are expected to show respect and courtesy to other attendees
28+
throughout the conference, at all conference events, and in all conference
29+
online spaces (such as Slack), whether officially sponsored by DjangoCon US or
30+
not.
31+
32+
### Be Kind To Others
33+
34+
Do not insult or put down other attendees. Behave professionally. Remember
35+
that harassment and sexist, racist, or exclusionary jokes are not appropriate
36+
for DjangoCon US. Attendees violating these rules may be asked to leave the
37+
conference without a refund at the sole discretion of the conference
38+
organizers.
39+
40+
### Be Respectful
41+
42+
Not all of us will agree all the time, but disagreement is no excuse for poor
43+
behavior and poor manners. We do not tolerate harassment of conference
44+
participants in any form.
45+
46+
Harassment includes: offensive verbal comments related to gender, gender
47+
identity, sexual orientation, disability, physical appearance, body size,
48+
race, religion; sexual images in public spaces; deliberate intimidation,
49+
stalking, or following; harassing photography or recording; sustained
50+
disruption of talks or other events; inappropriate physical contact; and
51+
unwelcome sexual attention.
52+
53+
## Choose Your Words
54+
55+
Be careful in the words that you choose. Remember that sexist, racist, and
56+
other exclusionary jokes can be offensive to those around you. Excessive
57+
swearing and offensive jokes are not appropriate for DjangoCon US. We are all
58+
adults, capable of having adult conversations. Preface your presentation with
59+
appropriate Trigger/Content Warnings, if necessary.
60+
61+
All communication should be appropriate for a professional audience including
62+
people of many different backgrounds. Sexual language and imagery is not
63+
appropriate for any conference venue, including talks.
64+
65+
Participants asked to stop any harassing behavior are expected to comply
66+
immediately.
67+
68+
Exhibitors in the expo hall, sponsor or vendor booths, or similar activities
69+
are also subject to the anti-harassment policy. In particular, exhibitors
70+
should not use sexualized images, activities, or other material. Booth staff
71+
(including volunteers) should not use sexualized clothing/uniforms/costumes,
72+
or otherwise create a sexualized environment.
73+
74+
## Examples of Inappropriate Behavior
75+
76+
- Harassment of any participants in any form
77+
- Deliberate intimidation, stalking, or following
78+
- Logging or taking screenshots of online activity for harassment purposes
79+
- Publishing others’ private information, such as a physical or electronic address, without explicit permission
80+
- Violent threats or language directed against another person
81+
- Incitement of violence or harassment towards any individual, including encouraging a person to commit suicide or to engage in self-harm
82+
- Creating additional online accounts in order to harass another person or circumvent a ban
83+
- Sexual language and imagery in online communities or in any conference venue, including talks
84+
- Insults, put downs, or jokes that are based upon stereotypes, that are exclusionary, or that hold others up for ridicule
85+
- Excessive swearing
86+
- Unwelcome sexual attention or advances
87+
- Unwelcome physical contact, including simulated physical contact (eg, textual descriptions like “hug” or “backrub”) without consent or after a request to stop
88+
- Pattern of inappropriate social contact, such as requesting/assuming inappropriate levels of intimacy with others
89+
- Sustained disruption of online community discussions, in-person presentations, or other in-person events
90+
- Continued one-on-one communication after requests to cease
91+
- Other conduct that is inappropriate for a professional audience including people of many different backgrounds
92+
93+
This list is not an exhaustive list of all inappropriate behavior that is unacceptable at DjangoCon US. Community members asked to stop any inappropriate behavior are expected to comply immediately.
94+
95+
## Photography
96+
97+
In order to make DjangoCon US 2023 a great experience for everyone, do not
98+
photograph, video, or audio record anyone at DjangoCon without their express
99+
permission, sought in advance. If someone does not want to be photographed,
100+
video or audio recorded, please respect their wishes.
101+
102+
Crowd shots are permitted, but when only the faces of a few people are
103+
visible, permission should be sought from all of those individuals.
104+
105+
_If a participant engages in behavior that violates this code of conduct, the
106+
conference organizers may take any action they deem appropriate, including
107+
warning the offender or expulsion from the conference with no refund._
108+
109+
## License
110+
111+
This Code of Conduct was forked from the example policy from the [Geek
112+
Feminism wiki](http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy), created by the Ada Initiative and other volunteers, which
113+
is under a Creative Commons Zero license.
114+
115+
This Code of Conduct also incorporates portions from PyCon's Code of Conduct, which is licensed under the [Creative Commons Attribution-ShareAlike 3.0 Unported License](https://creativecommons.org/licenses/by-sa/3.0/).
116+
117+
Conference Code of Conduct by
118+
[2025.djangocon.us/conduct/](https://2025.djangocon.us/conduct/) is licensed under a
119+
[Creative Commons Attribution 3.0 Unported
120+
License](http://creativecommons.org/licenses/by/3.0/).

LICENSE

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Copyright (c) Django Events Foundation North America (DEFNA) and individual
2+
contributors.
3+
All rights reserved.
4+
5+
Redistribution and use in source and binary forms, with or without modification,
6+
are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice,
9+
this list of conditions and the following disclaimer.
10+
11+
2. Redistributions in binary form must reproduce the above copyright
12+
notice, this list of conditions and the following disclaimer in the
13+
documentation and/or other materials provided with the distribution.
14+
15+
3. Neither the name of DEFNA nor the names of its contributors may be used
16+
to endorse or promote products derived from this software without
17+
specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
23+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29+
0Looking

0 commit comments

Comments
 (0)