SlideShare ist ein Scribd-Unternehmen logo
1 von 14
Downloaden Sie, um offline zu lesen
Ethical and Accessible Stack
Wagtail + Gatsby + Ethical Source Licenses
+
+ +
+
Who Am I?
+
. . . . . . . . . . . .
Django Engineer & Wagtail Core Team Member
● Software Engineer, React and Django Consultant at
Rugby Street Designs
● Build enterprise tools for SMBs, NGOs, Black, Brown
and Queer Enterprise
● Ethical Source Organizer
Where you can find me:
● Twitter @DawnWagesSays
● DjangoCon(s)
● GlitterTech.dev
● http://DawnWages.info
+
+
. . . . . . . . . . . .
Feature-packed and fast
React-based open source prgresssive web app generator
Rich, frontend and optimized websites on a cloud platform
Tools we’ll be talking about today!
Django-based Content Management System
10.6K Stars on Github and just released feature-rich version 2.13
www.DawnWages.info || @DawnWagesSays
Can we have it all?
Exploring if a GatsbyJS + WagtailCMS could be
a solution for small and medium clients and
personal project.
Fully automate your development set up
Always ready to code, turn almost any repo into a prebuilt collaborative
VSCode like dev environment in your browser.
Query language on a single data layer
Not tied to any database or storage engine and can “easily” combine
multiple data sources
+
+
. . . . . . . . . . . .
A case study of sorts...
React-based open source prgresssive web app generator
Rich, frontend and optimized websites on a cloud platform
Two powerful frameworks + two active communities
Django-based Content Management System
10.6K Stars on Github and just released feature-rich version 2.13
www.DawnWages.info || @DawnWagesSays
Content Management System
A content management system provides a way for users to update
information on their own. The developer equips the end user with
“widget” like functionality and an admin login to update the website
themselves.
Progressive Web App Generator
We’ve seen the rise of static-site generators in the past few years
which take data content, provided in different formats, content and
templates, processes them, and output a folder full of all the resultant
pages and assets. Gatsby is different because it is written in React and
outputs what could be an web app experience with stateful
components.
+
+
. . . . . . . . . . . .
Removes the presentation layer of what would be a full stack framework and adds
its own presentation layer.
What is headless?
ANSWER: Flexibility
When you abstract all of your decisions away to the top level
of your application, you have a single point of decision but
also a single point of failure.
www.DawnWages.info || @DawnWagesSays
Everything is a trade off.
● By separating your frontend and backend, you’re able to put
data into one big “bucket” in order to be more flexible with
the way that you render your application.
● Hard to do “stateful” frontend components with static
templating
● Can bring in other services from the headless infrastructure
beyond just web apps. Eg. SMS messages, email, rules
engines, data analysis all done in your backend language of
choice.
. . .
. . . . . . . . .
. . . . . . . . . .
. . . . . . . . .
. . . . . . .
. . . . . . . . . .
. . . . . . . . . .
. . . . . . . . .
. . . . . . .
. . .
Frontend
Backend
Data Storage
Development Environment
+
+
. . . . . . . . . . . .
and what the heck is a static site generator (SSG)?
Why headless?
www.DawnWages.info || @DawnWagesSays
. . .
. . . . . . . . .
. . . . . . . . . .
. . . . . . . . .
. . . . . . .
. . . . . . . . . .
. . . . . . . . . .
. . . . . . . . .
. . . . . . .
. . .
Frontend
Backend
Data Storage
Development Environment
Icons made by Freepik from flaticon.com
Data /
Content
Static Site
Generator
Website
End Users Hosting
BUILD
TIME
REQUEST
TIME
Wagtail uses the Model View Controller paradigm when it does not have a
frontend. It has its own templating and view structure that leans into common web
development patterns. When headless, we hand the “VC” to another
framework, but still use django’s powerful model and migration, data
management architecture that many node applications still wrestle with, we
have out of the box!
...more data stores
+
What sets Gatsby apart?
+
01
Accessibility
Gatsby is passionate about making sites that work for
everyone and gives tools to help your site be WCAG
compliant.
03
Gatsby Themes + Starters
Starters are pre-configured sites with specific
functionality for an expressed purpose to start your site
with: eg. Blog, portfolio, ecommerce, and you can
customize from there. Themes take the configuration
from the site to an npm package.
. . . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . .
. . . . . . . . . . .
. . . . . . . .
. . .
www.DawnWages.info || @DawnWagesSays
02
Plugin Library
Thousands of plugins from analytics, ecommerce
payment and auth, CSS and UI, to accessibility, etc. The
gatsby community authors new themes all the time.
04
Community
The users of Gatsby are passionate about the product.
Gatsby authors excellent guides and documentation, but
so does the community. The resources for questions,
help and seeing examples of what’s possible are easy to
find.
+
What sets Wagtail apart?
+
. . . . . . . . . . . .
. . . . . . . . . . .
. . . . . . . .
. . . . . . . . . . .
. . . . . . . .
. . .
www.DawnWages.info || @DawnWagesSays
01
Tight release cycle
Wagtail just release 2.13 - we use a time-based release
schedule, with feature releases every three months.
03
Made with Wagtail
A showcase of sites and apps made with wagtail, their
authors and should the site have open code, it’s can be
included
02
Plugin Library
Like Gatsby and Django, Wagtail has lots of plugins that
make the ecosystem even more feature rich. From
Authentication, C calendar,, Localization, Workflow,
Inventory, ecommerce, image editing, etc.
04
Community
Wagtail shows up at conferences, has its own Wagtail
Space, hosts tutorials an active Slack and Twitter
community.
+
+
. . . . . . . . . . . .
Pretty fast, and getting faster
www.DawnWages.info || @DawnWagesSays
So how fast is it to spin up a new site?
● Python 3.8 (3.9)**
● wagtail==2.10.1 (2.13)**
● wagtail-grapple==0.0.6.0
● wagtail-media==0.6.0
● graphene==2.1.8
● graphql-core==2.2.1
● graphene==2.1.8
● Django==3.0.9 (3.2)**
**Update to tutorial coming soon!
http://bit.ly/wagtail-gatsby-latest-tutorial
+
+
. . . . . . . . . . . .
Here’s where you could describe
open GitPod
Steps
www.DawnWages.info || @DawnWagesSays
001
002
003
004
005
006
007
008
009
010
./manage.py startapp blog
and update blog models
pip install graphene,
wagtail-grapple, wagtailmedia
configure graphene and grapple in the base.py and
urls.py for graphql and graphiql view
Add graphene_django, wagtail_graphql,
wagtaimedia, grapple and blog to
INSTALLED APPS in settings.py file
./manage.py migrate
./manage.py runserver 8080
add new blog posts
https://8080[gitpodurl]/admin
navigate to
https://8080[gitpodurl]/api/graphiql to
test graphql’s endpoints
npm i -g gatsby-cli
to install gatsby globally
gatsby new site
https://github.com/tm-kn/w
atail-graphql-api-gatsby
edit cd site and gatsby develop to run the
site front end
011
012
013
edit .env to connect gatsby and wagtail
WAGTAIL_GRAPHQL_ENDPOINT=http://local
host:8080/graphql/
VISIT YOUR SITE RUNNING IN DEVELOPER
MODE AT PORT 8000!
. . .
. . . . . . . .
. . . . . . . . .
. . . . . . . . . .
. . . . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . . .
. . . . . . . . . .
. . . . . . . . . .
. . . . . . . .
. . .
+
Building projects
+
. . . . . . . . . . . .
At The Root
EST. June 2020
An Anti-Racist License for Open Source Projects.
. . .
. . . . . . . .
. . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . .
. . . . . . . . . .
. . . . . . . . . . . .
. . . . . . .
www.DawnWages.info || @DawnWagesSays
Radical simply means 'grasping things at the root',”
- Angela Davis
+
+
. . . . . . . . . . . .
Anti-Racist Ethical Source License
AtTheRoot.dev
001
What is an Ethical Source License?
A new license that explicitly restricts use of open code on the basis of an ethics.
At The Root
www.DawnWages.info || @DawnWagesSays
Icons made by Freepik from flaticon.com
At The Root License Anti-Racist Check List At The Root Review Board
+
+ . . . . . . . . . . . .
A movement that started in 2018, gaining traction
001
Empowers open source engineers
Be confident that you are creating code that will build a world you
want to live in.
Ethical Source Movement
. . .
. . . . . . . .
. . . . . . . . . .
. . . . . . . . . . . .
. . .
. . . . . . . .
. . . . . . . . . .
. . . . . . . . . . . .
. . . . . . . .
Where
next?
www.DawnWages.info || @DawnWagesSays
002
Tech is not neutral, nor is it apolitical
Regardless of how much we may want it to be, what we build and
what we build it for is not neutral.
003
We’re building a movement
Recently founded Organization for Ethical Source has full time
member and partnerships with the Corporate Accountability Lab
https://ethicalsource.dev/resources/
. . .
. . . . . . . .
. . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . . . .
. . . . . . . . . . .
. . . . . . . . . .
. . . . . . . .
. . .
+
+
Where you can find me:
● Twitter @DawnWagesSays
● DjangoCon(s)
● GlitterTech.dev
● http://DawnWages.info
Thank you!
. . . . . . . . . . . .
dawn@glittertech.dev

Weitere ähnliche Inhalte

Ähnlich wie Ethical and Accessible Stack Wagtail + Gatsby + Ethical Source Licenses

GDI Seattle - Intermediate HTML and CSS Class 3 Slides
GDI Seattle - Intermediate HTML and CSS Class 3 SlidesGDI Seattle - Intermediate HTML and CSS Class 3 Slides
GDI Seattle - Intermediate HTML and CSS Class 3 SlidesHeather Rock
 
Why and How SmartNews uses SaaS?
Why and How SmartNews uses SaaS?Why and How SmartNews uses SaaS?
Why and How SmartNews uses SaaS?Takumi Sakamoto
 
Business of Front-end Web Development
Business of Front-end Web DevelopmentBusiness of Front-end Web Development
Business of Front-end Web DevelopmentRachel Andrew
 
[drupalday2017] - Speed-up your Drupal instance!
[drupalday2017] - Speed-up your Drupal instance![drupalday2017] - Speed-up your Drupal instance!
[drupalday2017] - Speed-up your Drupal instance!DrupalDay
 
Speed up your Drupal instance!!
Speed up your Drupal instance!!Speed up your Drupal instance!!
Speed up your Drupal instance!!bmeme
 
What I Learned At Drupal Con Dc 2009
What I Learned At Drupal Con Dc 2009What I Learned At Drupal Con Dc 2009
What I Learned At Drupal Con Dc 2009Neil Giarratana
 
The State of Front-end At CrowdTwist
The State of Front-end At CrowdTwistThe State of Front-end At CrowdTwist
The State of Front-end At CrowdTwistMark Fayngersh
 
Tacacs+ with gui support
Tacacs+ with gui supportTacacs+ with gui support
Tacacs+ with gui supportAsmit Panday
 
Tacacs+ with gui support
Tacacs+ with gui supportTacacs+ with gui support
Tacacs+ with gui supportAsmit Panday
 
Tacacswithguisupport 160906102531
Tacacswithguisupport 160906102531Tacacswithguisupport 160906102531
Tacacswithguisupport 160906102531Asmit Panday
 
Digital Content Retrieval Final Report
Digital Content Retrieval Final ReportDigital Content Retrieval Final Report
Digital Content Retrieval Final ReportKourosh Sajjadi
 
Making sense of microservices, service mesh, and serverless
Making sense of microservices, service mesh, and serverlessMaking sense of microservices, service mesh, and serverless
Making sense of microservices, service mesh, and serverlessChristian Posta
 
Bringing JAMStack to the Enterprise
Bringing JAMStack to the EnterpriseBringing JAMStack to the Enterprise
Bringing JAMStack to the EnterpriseC4Media
 
Smwcon spring2011 tutorial applied semantic mediawiki
Smwcon spring2011 tutorial applied semantic mediawikiSmwcon spring2011 tutorial applied semantic mediawiki
Smwcon spring2011 tutorial applied semantic mediawikiJesse Wang
 
Power to the Users (and Librarians)
Power to the Users (and Librarians)Power to the Users (and Librarians)
Power to the Users (and Librarians)Guus van den Brekel
 
Ambrosius Lee. - AutoCAD Platform Customization VBA .Pdf
Ambrosius Lee. - AutoCAD Platform Customization  VBA .PdfAmbrosius Lee. - AutoCAD Platform Customization  VBA .Pdf
Ambrosius Lee. - AutoCAD Platform Customization VBA .PdfJoshua Gorinson
 

Ähnlich wie Ethical and Accessible Stack Wagtail + Gatsby + Ethical Source Licenses (20)

GDI Seattle - Intermediate HTML and CSS Class 3 Slides
GDI Seattle - Intermediate HTML and CSS Class 3 SlidesGDI Seattle - Intermediate HTML and CSS Class 3 Slides
GDI Seattle - Intermediate HTML and CSS Class 3 Slides
 
Why and How SmartNews uses SaaS?
Why and How SmartNews uses SaaS?Why and How SmartNews uses SaaS?
Why and How SmartNews uses SaaS?
 
Business of Front-end Web Development
Business of Front-end Web DevelopmentBusiness of Front-end Web Development
Business of Front-end Web Development
 
[drupalday2017] - Speed-up your Drupal instance!
[drupalday2017] - Speed-up your Drupal instance![drupalday2017] - Speed-up your Drupal instance!
[drupalday2017] - Speed-up your Drupal instance!
 
Speed up your Drupal instance!!
Speed up your Drupal instance!!Speed up your Drupal instance!!
Speed up your Drupal instance!!
 
What I Learned At Drupal Con Dc 2009
What I Learned At Drupal Con Dc 2009What I Learned At Drupal Con Dc 2009
What I Learned At Drupal Con Dc 2009
 
The State of Front-end At CrowdTwist
The State of Front-end At CrowdTwistThe State of Front-end At CrowdTwist
The State of Front-end At CrowdTwist
 
Tacacs+ with gui support
Tacacs+ with gui supportTacacs+ with gui support
Tacacs+ with gui support
 
Tacacs+ with gui support
Tacacs+ with gui supportTacacs+ with gui support
Tacacs+ with gui support
 
Tacacswithguisupport 160906102531
Tacacswithguisupport 160906102531Tacacswithguisupport 160906102531
Tacacswithguisupport 160906102531
 
Digital Content Retrieval Final Report
Digital Content Retrieval Final ReportDigital Content Retrieval Final Report
Digital Content Retrieval Final Report
 
Making sense of microservices, service mesh, and serverless
Making sense of microservices, service mesh, and serverlessMaking sense of microservices, service mesh, and serverless
Making sense of microservices, service mesh, and serverless
 
Bringing JAMStack to the Enterprise
Bringing JAMStack to the EnterpriseBringing JAMStack to the Enterprise
Bringing JAMStack to the Enterprise
 
Smwcon spring2011 tutorial applied semantic mediawiki
Smwcon spring2011 tutorial applied semantic mediawikiSmwcon spring2011 tutorial applied semantic mediawiki
Smwcon spring2011 tutorial applied semantic mediawiki
 
Meteorjs
MeteorjsMeteorjs
Meteorjs
 
Meteorjs
MeteorjsMeteorjs
Meteorjs
 
Workshop Report
Workshop ReportWorkshop Report
Workshop Report
 
Cloud view platform-highlights-web3
Cloud view platform-highlights-web3Cloud view platform-highlights-web3
Cloud view platform-highlights-web3
 
Power to the Users (and Librarians)
Power to the Users (and Librarians)Power to the Users (and Librarians)
Power to the Users (and Librarians)
 
Ambrosius Lee. - AutoCAD Platform Customization VBA .Pdf
Ambrosius Lee. - AutoCAD Platform Customization  VBA .PdfAmbrosius Lee. - AutoCAD Platform Customization  VBA .Pdf
Ambrosius Lee. - AutoCAD Platform Customization VBA .Pdf
 

Kürzlich hochgeladen

Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 

Kürzlich hochgeladen (20)

Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 

Ethical and Accessible Stack Wagtail + Gatsby + Ethical Source Licenses

  • 1. Ethical and Accessible Stack Wagtail + Gatsby + Ethical Source Licenses + + +
  • 2. + Who Am I? + . . . . . . . . . . . . Django Engineer & Wagtail Core Team Member ● Software Engineer, React and Django Consultant at Rugby Street Designs ● Build enterprise tools for SMBs, NGOs, Black, Brown and Queer Enterprise ● Ethical Source Organizer Where you can find me: ● Twitter @DawnWagesSays ● DjangoCon(s) ● GlitterTech.dev ● http://DawnWages.info
  • 3. + + . . . . . . . . . . . . Feature-packed and fast React-based open source prgresssive web app generator Rich, frontend and optimized websites on a cloud platform Tools we’ll be talking about today! Django-based Content Management System 10.6K Stars on Github and just released feature-rich version 2.13 www.DawnWages.info || @DawnWagesSays Can we have it all? Exploring if a GatsbyJS + WagtailCMS could be a solution for small and medium clients and personal project. Fully automate your development set up Always ready to code, turn almost any repo into a prebuilt collaborative VSCode like dev environment in your browser. Query language on a single data layer Not tied to any database or storage engine and can “easily” combine multiple data sources
  • 4. + + . . . . . . . . . . . . A case study of sorts... React-based open source prgresssive web app generator Rich, frontend and optimized websites on a cloud platform Two powerful frameworks + two active communities Django-based Content Management System 10.6K Stars on Github and just released feature-rich version 2.13 www.DawnWages.info || @DawnWagesSays Content Management System A content management system provides a way for users to update information on their own. The developer equips the end user with “widget” like functionality and an admin login to update the website themselves. Progressive Web App Generator We’ve seen the rise of static-site generators in the past few years which take data content, provided in different formats, content and templates, processes them, and output a folder full of all the resultant pages and assets. Gatsby is different because it is written in React and outputs what could be an web app experience with stateful components.
  • 5. + + . . . . . . . . . . . . Removes the presentation layer of what would be a full stack framework and adds its own presentation layer. What is headless? ANSWER: Flexibility When you abstract all of your decisions away to the top level of your application, you have a single point of decision but also a single point of failure. www.DawnWages.info || @DawnWagesSays Everything is a trade off. ● By separating your frontend and backend, you’re able to put data into one big “bucket” in order to be more flexible with the way that you render your application. ● Hard to do “stateful” frontend components with static templating ● Can bring in other services from the headless infrastructure beyond just web apps. Eg. SMS messages, email, rules engines, data analysis all done in your backend language of choice. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Frontend Backend Data Storage Development Environment
  • 6. + + . . . . . . . . . . . . and what the heck is a static site generator (SSG)? Why headless? www.DawnWages.info || @DawnWagesSays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Frontend Backend Data Storage Development Environment Icons made by Freepik from flaticon.com Data / Content Static Site Generator Website End Users Hosting BUILD TIME REQUEST TIME Wagtail uses the Model View Controller paradigm when it does not have a frontend. It has its own templating and view structure that leans into common web development patterns. When headless, we hand the “VC” to another framework, but still use django’s powerful model and migration, data management architecture that many node applications still wrestle with, we have out of the box! ...more data stores
  • 7. + What sets Gatsby apart? + 01 Accessibility Gatsby is passionate about making sites that work for everyone and gives tools to help your site be WCAG compliant. 03 Gatsby Themes + Starters Starters are pre-configured sites with specific functionality for an expressed purpose to start your site with: eg. Blog, portfolio, ecommerce, and you can customize from there. Themes take the configuration from the site to an npm package. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . www.DawnWages.info || @DawnWagesSays 02 Plugin Library Thousands of plugins from analytics, ecommerce payment and auth, CSS and UI, to accessibility, etc. The gatsby community authors new themes all the time. 04 Community The users of Gatsby are passionate about the product. Gatsby authors excellent guides and documentation, but so does the community. The resources for questions, help and seeing examples of what’s possible are easy to find.
  • 8. + What sets Wagtail apart? + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . www.DawnWages.info || @DawnWagesSays 01 Tight release cycle Wagtail just release 2.13 - we use a time-based release schedule, with feature releases every three months. 03 Made with Wagtail A showcase of sites and apps made with wagtail, their authors and should the site have open code, it’s can be included 02 Plugin Library Like Gatsby and Django, Wagtail has lots of plugins that make the ecosystem even more feature rich. From Authentication, C calendar,, Localization, Workflow, Inventory, ecommerce, image editing, etc. 04 Community Wagtail shows up at conferences, has its own Wagtail Space, hosts tutorials an active Slack and Twitter community.
  • 9. + + . . . . . . . . . . . . Pretty fast, and getting faster www.DawnWages.info || @DawnWagesSays So how fast is it to spin up a new site? ● Python 3.8 (3.9)** ● wagtail==2.10.1 (2.13)** ● wagtail-grapple==0.0.6.0 ● wagtail-media==0.6.0 ● graphene==2.1.8 ● graphql-core==2.2.1 ● graphene==2.1.8 ● Django==3.0.9 (3.2)** **Update to tutorial coming soon! http://bit.ly/wagtail-gatsby-latest-tutorial
  • 10. + + . . . . . . . . . . . . Here’s where you could describe open GitPod Steps www.DawnWages.info || @DawnWagesSays 001 002 003 004 005 006 007 008 009 010 ./manage.py startapp blog and update blog models pip install graphene, wagtail-grapple, wagtailmedia configure graphene and grapple in the base.py and urls.py for graphql and graphiql view Add graphene_django, wagtail_graphql, wagtaimedia, grapple and blog to INSTALLED APPS in settings.py file ./manage.py migrate ./manage.py runserver 8080 add new blog posts https://8080[gitpodurl]/admin navigate to https://8080[gitpodurl]/api/graphiql to test graphql’s endpoints npm i -g gatsby-cli to install gatsby globally gatsby new site https://github.com/tm-kn/w atail-graphql-api-gatsby edit cd site and gatsby develop to run the site front end 011 012 013 edit .env to connect gatsby and wagtail WAGTAIL_GRAPHQL_ENDPOINT=http://local host:8080/graphql/ VISIT YOUR SITE RUNNING IN DEVELOPER MODE AT PORT 8000! . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
  • 11. + Building projects + . . . . . . . . . . . . At The Root EST. June 2020 An Anti-Racist License for Open Source Projects. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . www.DawnWages.info || @DawnWagesSays Radical simply means 'grasping things at the root',” - Angela Davis
  • 12. + + . . . . . . . . . . . . Anti-Racist Ethical Source License AtTheRoot.dev 001 What is an Ethical Source License? A new license that explicitly restricts use of open code on the basis of an ethics. At The Root www.DawnWages.info || @DawnWagesSays Icons made by Freepik from flaticon.com At The Root License Anti-Racist Check List At The Root Review Board
  • 13. + + . . . . . . . . . . . . A movement that started in 2018, gaining traction 001 Empowers open source engineers Be confident that you are creating code that will build a world you want to live in. Ethical Source Movement . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Where next? www.DawnWages.info || @DawnWagesSays 002 Tech is not neutral, nor is it apolitical Regardless of how much we may want it to be, what we build and what we build it for is not neutral. 003 We’re building a movement Recently founded Organization for Ethical Source has full time member and partnerships with the Corporate Accountability Lab https://ethicalsource.dev/resources/
  • 14. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + + Where you can find me: ● Twitter @DawnWagesSays ● DjangoCon(s) ● GlitterTech.dev ● http://DawnWages.info Thank you! . . . . . . . . . . . . dawn@glittertech.dev