Code Monkey home page Code Monkey logo

chapter-websites's Introduction

PyLadies

This website is managed by the PyLadies Tech and Infra team. If you would like to join as an official member, read more here! You can also join us in Slack, #project-tech-infra channel.

This website welcomes pull requests from anyone in the community.

Overview

Netlify Status

This is the source code for the http://pyladies.com/ website. It uses mynt, a static site generator, and is powered by 🐍 Python 3.10 🐍!

Contents

Understanding the repo's directory layout

Before adding a new location or contributing to the pyladies website, it's helpful to understand a bit about the repo and its contents.

This is a general overview of the repo's root directory structure. requirements.txt specifies the dependencies. .github/workflows contains the configuration for CI testing and deployment. The repo's root directory also contains the www folder. Most of the time, contributors will edit or add files in the www folder.

requirements.txt   # file with dependencies used by pip
netlify.toml       # file setting up netlify build commands
www                # directory which contains the content of the website
β”œβ”€β”€ CodeOfConduct
β”œβ”€β”€ _assets        # javascript, CSS stuff, and images go here
β”œβ”€β”€ _posts         # contains blog posts written in markdown
β”œβ”€β”€ _templates     # contains the base templates (html and Jinja2) used by the site
β”œβ”€β”€ about
β”œβ”€β”€ archives
β”œβ”€β”€ blog
β”œβ”€β”€ locations      # Use the config.yml file to add new locations or update location info
β”œβ”€β”€ resources
└── sponsor

Setting Up a Development System

If you wish to add a location, new chapter, or make code changes, please review the next few sections. There are a few tasks to set up a development system:

Set up Python and a project directory

Linux, macOS

  1. Check that Python 3.10 is installed with python --version. If it is not installed, it can be downloaded at https://python.org:

    $ python --version
    Python 3.10
  2. (Optional) Learn the directory which this Python version is installed which python:

    $ which python
    /usr/local/bin/python

    You may see a different directory name which is fine.

  3. Create a directory for development mkdir pyladies-dev:

    $ mkdir pyladies-dev
  4. Change into the directory cd pyladies-dev:

    $ cd pyladies-dev
    
    # To check your current directory (`<YOUR_PATH>` will be different on
    # your system.)
    $ pwd
    YOUR_PATH/pyladies-dev

Great!

Windows

The process will be similar though the commands will vary slightly. Reference: Table of basic Powershell commands.

Create and activate a virtual environment

  1. From the pyladies-dev directory, install the virtualenv package:

    $ pip install virtualenv
  2. Create a virtual environment named pyladyenv:

    $ virtualenv pyladyenv
  3. Activate the virtual environment:

    $ source pyladyenv/bin/activate
    
    (pyladyenv)
    $

    After activation, you should see (pyladyenv) above your command prompt.

Troubleshooting note (AttributeError: 'module' object has no attribute 'X509_up_ref'): The error comes from PyOpenSSL. Either your OpenSSL is too old or too new. Try upgrading or downgrading OpenSSL and PyOpenSSL.

Fork and clone your pyladies repo

  1. On GitHub, fork http://github.com/pyladies/pyladies to your own GitHub account <YOUR_GITHUB_USER_NAME> by pressing the green Fork button on the upper right of the screen.
  2. From the pyladies-dev directory, clone your fork to your machine using git clone:
(pyladyenv)
$ git clone https://github.com/<YOUR_GITHUB_USER_NAME>/pyladies.git
Cloning into 'pyladies'...
remote: Enumerating objects: 47, done.
remote: Counting objects: 100% (47/47), done.
remote: Compressing objects: 100% (29/29), done.
remote: Total 5877 (delta 22), reused 38 (delta 16), pack-reused 5830
Receiving objects: 100% (5877/5877), 39.73 MiB | 3.62 MiB/s, done.
Resolving deltas: 100% (2922/2922), done.

You have successfully cloned your pyladies fork. πŸ˜„

Run the site locally

Troubleshooting note for some operating systems: Make sure you have headers for Python and libevent installed (e.g., on Ubuntu, python-dev and libevent-dev). Packages in requirements.txt are required for the website to build successfully with mynt.

  1. Change to the root of the pyladies repo (your virual environment should still be activated):

    (pyladyenv)
    $ cd pyladies
  2. Install dependencies using pip:

    (pyladyenv)
    $ pip install -r requirements.txt
    
    # You will see files being installed and this message at completion
    # It's okay if the versions differ slightly
    Successfully built hoep MarkupSafe mynt pathtools pycparser PyYAML watchdog
    Installing collected packages: argh, asn1crypto, six, pycparser, cffi, bcrypt, idna, enum34, ipaddress, cryptography, docutils, pyasn1, PyNaCl, paramiko, Fabric, hoep, MarkupSafe, Jinja2, Pygments, PyYAML, pathtools, watchdog, mynt
    Successfully installed Fabric-1.13.1 Jinja2-2.9.6 MarkupSafe-1.0 PyNaCl-1.1.2 PyYAML-3.12 Pygments-2.2.0 argh-0.26.2 asn1crypto-0.22.0 bcrypt-3.1.3 cffi-1.10.0 cryptography-2.0.3 docutils-0.14 enum34-1.1.6 hoep-1.0.2 idna-2.6 ipaddress-1.0.18 mynt-0.3.1 paramiko-2.2.1 pathtools-0.1.2 pyasn1-0.3.2 pycparser-2.18 six-1.10.0 watchdog-0.8.3
  3. Navigate into the pyladies/www directory.

    (pyladyenv)
    $ cd www
  4. Use mynt to generate and serve the website locally with mynt gen -f _site && mynt serve _site:

    (pyladyenv)
    $ mynt gen -f _site && mynt serve _site
    >> Parsing
    >> Rendering
    >> Generating
    Completed in 1.114s
    >> Serving at 127.0.0.1:8080
    Press ctrl+c to stop.
  5. Copy the IP address provided once mynt has completed building the site. It will say something like >> Serving at 127.0.0.1:8080. Then paste the IP address into the URL bar of a browser window and load it to view the site.

Congrats on running the site on your machine πŸŽ‰ 🐍

  1. (Optional: After making changes to the source code) To view any changes you make to the site code, type ctrl+c in the terminal to stop the local webserver. Then run the command from Step 5 again and refresh the browser window.

Note: It is important that when you create your virtualenv, do not create it in the same folder as the code you downloaded. The reason is that mynt will search the current directory for files to build and it looks for all folders that don't start with an underscore (which means it will find your virtualenv folder and error out).

To add a new PyLadies location to the PyLadies Website

Follow the instructions for setting up a development environment.

To add or edit a location, you will make changes to the config.yaml file found in the pyladies\www\locations directory.

YAML files are often used for configuration information. They can be fussy about spacing, indentations, and punctuation. It can be helpful when troubleshooting to use an online YAML validator to see if the file is correctly formatted. An example is YAML Lint though there are many others and some editors provide similar functionality.

An example of a location:

- email: [email protected]
  external_website: true
  image: pyladies_berlin.png
  location:
    latitude: 52.52
    longitude: 13.38
  meetup: PyLadies-Berlin
  meetup_id: 4663512976
  meetup_image: https://secure.meetupstatic.com/photos/event/6/b/8/6/highres_454587526.jpeg
  name: Berlin, Germany
  organizer: Anett G.
  pro_network: Python Software Foundation Meetup Pro Network
  twitter: PyLadiesBer
  website: http://berlin.pyladies.com

Please note: if you wish to use the website field, you need to create an official website through the PyLadies Chapter Website repository. Otherwise you can skip that field.

For Unicode accents in some languages To use a Unicode accent in a YAML file, it's important to use the HTML entity character for the accent. The HTML entity can found be found in a table of characters.

For example, MΓ©xico will have the HTML entity M&eacute;xico.

To write a blog post

See CONTRIBUTING.md for instructions and guidelines.

To contribute to the repository

See CONTRIBUTING.md for instructions and guidelines.

To write a resource (more "sticky" than a blog post)

Collection of outside resources

If you want to add a bullet item to an existing subject matter, find the relevant post in www/_posts (file titled by its general category) and add to the .md file. Please also update the date in the .md file. For instance, if you want to add another suggestion to text editors, the original file is: www/_posts/2013-04-19-tools-resources.md, and once you're done editing, it would be renamed to www/_post/todays-date-tools-resources.md.

If there is a collection of resources that do not fit into our loosely-named categories, like "tools" or "tutorials", etc, then start your own in www/_posts/ and name the Markdown file with today's date, general category, plus the word "resources", like: 2013-04-21-developer-tips-resources.md. You will also need to have the following at the top:

---
layout: post.html
title: "Your title here"
tags: [list, of relevant, tags]
category: resources
---

Your own resource

If you want to write your own resources, like Barbara's beginner workshop notes or Juliana's Mac setup, in addition to CONTRIBUTING.md, you will need to add more items in the header portion, like so:

---
layout: post.html
title: "Your title here"
tags: [list, of relevant, tags]
author: Name, or blank/none
author_link: Twitter/Blog/etc or blank/none
category: resources, pyladies
---

Notice that pyladies and resources are required in for category.

Once done, save it in www/_posts/ with the date and title in the name of the file, like so: 2013-04-21-lynns-awesome-resource.md.

To find this resource online, you would navigate to http://pyladies.com/blog/[your_post_name]

For Organizers

Registering your PyLadies Chapter and onbtaining a website

Once you have obtained an official PyLadies Google account you should:

  1. Register your PyLadies Chapter to the Chapter Directory as active, we use this to populate the chapter options for members when registering as well as populate the PyLadies chapter map.
  2. Get started on building your PyLadies website, read the directions on the PyLadies Chapter Website repo.

Questions? Make sure to join us in Slack at slackin.pyladies.com and ask to join the #organizers channel!

LICENSE

License: MIT License

chapter-websites's People

Contributors

aliciapj avatar bethanyg avatar eduatro avatar fernandadguez avatar julianaklulo avatar kdrakoulaki avatar lorenanicole avatar mariatta avatar reshamas avatar willingc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

chapter-websites's Issues

Requesting a new PyLadies Chapter website: Athens

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

Athens

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

[ x] Yes
[ ] No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

athens.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Name | GitHub Handle | Slack Handle | Team Role
Katerina Drakoulaki| KDrakoulaki| Katerina Drakoulaki|--
Marielena Soilemezidi | MarielenaS | Marielena | --
Ioanna Kolokytha | ioannakolok | Ioanna | --
Vasiliki Moutzouri | vmoutzouri | Vasiliki_M | --

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • [x ] GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

Not applicable, as this is a new website with no prior code in pyladies repository

  • If applicable, have you removed your old PyLadies website from main PyLadies repo?
    Insert pull request: [Add pull request link here]

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo:
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team:
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: PyLadies Dublin

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

PyLadies Dublin

What is the custom domain desired for the PyLadies chapter website?

Already have one: dublin.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Name GitHub Handle Slack Handle Team Role
Vicky Twomey-Lee @whykay @whykay - PyLadies Dublin Organiser

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Netlify
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo:https://github.com/pyladies/pyladies-dublin-website
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: @pyladies/dublin
  • Is the GitHub team added to the repo with maintain permissions?

image

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: Uruguay

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

PyLadies Uruguay

What is the custom domain desired for the PyLadies chapter website?

uy.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Name GitHub Handle Slack Handle Team Role
FlΓ‘via Cardoso @fcardoso0917 @flavia Organizer
Carolina Gherzo @cgherzo @Carolina Gherzo Organizer

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Netlify
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

image

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: PyLadies SΓ£o Carlos

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

SΓ£o Carlos

What is the custom domain desired for the PyLadies chapter website?

saocarlos.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Name GitHub Handle Slack Handle Team Role
Juliana Karoline julianaklulo julianaklulo Co-Organizer
Ana Dulce anadulce anadulce Co-Organizer
Nathalia Gomazako n-th n-th Co-Organizer
Laura Gouveia volkana Laura G Co-Organizer

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Netlify
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo: https://github.com/pyladies/pyladies-sao-carlos-website
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: @pyladies/sao-carlos
  • Is the GitHub team added to the repo with maintain permissions? Yes see screenshot below

image

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: Hamburg

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

Hamburg

What is the custom domain desired for the PyLadies chapter website?

hamburg.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

terezaif, neinkeinkaffee, chalendony,

Name GitHub Handle Slack Handle Team Role
Tereza Iofciu terezaif Tereza co-organiser
Gesa Stupperich neinkeinkaffee Gesa co-organiser
AvarΓ© Stewart chalendony AvarΓ© Stewart co-organiser
Annemarie Paul AnMaPa Annemarie Paul co-organiser

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo: https://github.com/pyladies/pyladies-hamburg-website
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: @pyladies/hamburg
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: ParnaΓ­ba

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

[ x] Yes
[ ] No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

What are the GitHub handles of the PyLadies chapter organizers?

parnaiba.pyladies.com

Name | GitHub Handle | Slack Handle | Team Role

Emilly Horta | https://github.com/Emilly-horta | @EmillyHorta | Co-fundadora
Celenny Christyne | https://github.com/celenny | @celenny | organizadora e equipe de midias
Vitoria Neris | https://github.com/torineris | @neris | equipe de midias
Alinne Grazielle | https://github.com/alinnegrazielle | @alinne Grazielle | organizadora
Karina Cursino | https://github.com/karinacursino | @karina | organizadora

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • [ x] GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo:
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team:
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: Guatemala City

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

[x] Yes
[ ] No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

guatemalacity.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Name | GitHub Handle | Slack Handle | Team Role
| Sara Iris Garcia | montjoile | sara Iris Garcia | Chapter lead |
| Maria Mercedes Wyss | itrjwyss | itrjwyss | Chapter lead |

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo: https://github.com/pyladies/pyladies-guatemala-city-website
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: @pyladies/guatemala-city
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: Caxias do Sul

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

PyLadies Caxias do Sul

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

  • Yes

  • No

What is the custom domain desired for the PyLadies chapter website?

caxiasdosul.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Name | GitHub Handle | Slack Handle | Team Role |
Eliane Maciel | @elianemaciel | @ Eliane Maciel | co-founder |

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo:
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team:
  • Is the GitHub team added to the repo with maintain permissions?

@pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: PyLadies Cochabamba

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

Cochabamba

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

[X] Yes
[ ] No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

cbba.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Name GitHub Handle Slack Handle Team Role
Iris Escobar irisAdriana Iris Escobar co-organizer
DΓ‘maris GosΓ‘lvez damarisgch DΓ‘maris GosΓ‘lvez Member
Yohana Pelaez YohanaPelaez Yohana Pelaez co-organizer
Paola CΓ©spedes anypao8 Paola CΓ©spedes Member
Eduardo Villarroel eduatro Member

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

/cc @pyladies/tech-and-infra-admins

Missing PyLadies Chapter from PyLadies Chapter List: San Antonio

This template should be used for PyLadies Chapters missing from PyLadies Chapter list (e.g. members.pyladies.com).

What is the name of the PyLadies chapter requesting the website?

San Antonio

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

  • Yes
  • No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

Issue checklist

For the author to complete:

  • Completed the questions above
  • Did you notify the PyLadies Slack channel #project-tech-infra?

For the @pyladies/tech-and-infra-admins to complete:

  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team:
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: Chicago

_This template should be used for those requiring a new PyLadies website.

1. What is the name of the PyLadies chapter requesting the website?

Chicago

2. What is the custom domain desired for the PyLadies chapter website?

chicago.pyladies.com

3. What are the GitHub handles of the PyLadies chapter organizers?

Name GitHub Handle Slack Handle PyLadies Chapter Team Role
Lorena Mesa @lorenanicole @lorenanicole Chicago Co-Organizer

Issue checklist

For the author to complete:

  • Completed the three questions above
  • Did you notify the PyLadies Slack channel #project-tech-infra?

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo: https://github.com/pyladies/pyladies-chicago-website
  • Is the custom domain created? Yes, it is chicago.pyladies.com
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: Yes @pyladies/chicago-organizers

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: <NYC PyLadies>

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

NYC PyLadies

What is the custom domain desired for the PyLadies chapter website?

nyc.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

reshamas
mferrari3
antoniablair
codeLovingYogi
prith13

Name GitHub Handle Slack Handle Team Role
Reshama Shaikh reshamas reshama Co-Organizer
Melissa Ferrari mferrari3 melissa Co-Organizer
Antonia Blair antoniablair tonia Co-Organizer
Felice Ho codeLovingYogi felice Co-Organizer
Prithvi Gandhi prith13 prithvi Co-Organizer

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Netlify
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo: https://github.com/pyladies/pyladies-nyc-website/
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: @pyladies/nyc
  • Is the GitHub team added to the repo with maintain permissions?

image

/cc @pyladies/tech-and-infra-admins

Note

I would prefer to wait until this PR is accepted before deleting the info from the main pyladies repo, unless there is some other workflow?

Requesting a new PyLadies Chapter website: Chennai

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

[x] Yes
[ ] No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

chennai.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Niharika Krishnan | niharikakrishnan | niharikakrishnan | Organizer
Unnati Mishra | CodesbyUnnati | Unnati Mishra | Member

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Netlify
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo: https://github.com/pyladies/pyladies-chennai-website
  • Is the custom domain created? Yes
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: @pyladies/chennai
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: PyLadies San Antonio

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

PyLadies San Antonio

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

  • Yes
  • No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

sanantonio.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Name GitHub Handle Slack Handle Team Role
Katie Brown PyLadiesSA (chapter) / ktmbrown Katie Brown Organizer

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo:https://github.com/pyladies/pyladies-san-antonio-website
  • Is the custom domain created? sanantonio.pyladies.com
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: @pyladies/san-antonio
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: PyLadies Hermosillo

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

PyLadies Hermosillo

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

[x] Yes
[ ] No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

hermosillo.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Name GitHub Handle Slack Handle Team Role
Fernanda Dominguez FernandaDguez Fer Co-Organizer
Nicole Castillo nicolecastillo nicole castillo Co-Organizer
Ximena Sandoval ximenasandoval Ximena Sandoval Co-Organizer

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo: https://github.com/pyladies/pyladies-hermosillo-website
  • Is the custom domain created? hermosillo.pyladies.com
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: @pyladies/hermosillo
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: PyLadies Seattle

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

Seattle

What is the custom domain desired for the PyLadies chapter website?

seattle.pyladies.com (or similar!)

What are the GitHub handles of the PyLadies chapter organizers?

Name GitHub Handle Slack Handle Team Role
Catherine Nelson drcat101 Catherine Nelson Co-organizer
Wendy Grus wgrus wendy_seattle Organizer
Christy Heaton christyheaton Christy Heaton Co-organizer
Erika Pelaez MidoriR Erika Pelaez Co-organizer

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Netlify
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: Madrid

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

Madrid

What is the custom domain desired for the PyLadies chapter website?

madrid.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

aliciapj, mariamedp, vickycmcv

Name GitHub Handle Slack Handle Team Role
Alicia PΓ©rez aliciapj aliciapj co-organizer
MarΓ­a Medina mariamedp mariamedp co-organizer
Vicky CortΓ©s vickycmcv Vicky Cortes co-organizer

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Netlify
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo: https://github.com/pyladies/pyladies-madrid-website
  • Is the custom domain created? madrid.pyladies.com
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: @pyladies/madrid
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: Brasil

What is the name of the PyLadies chapter requesting the website?

PyLadies Brasil

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

I haven't but it's not a new chapter, so I am assuming I don't need to.

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

http://brasil.pyladies.com but this actually lives under https://github.com/pyladies-brazil/br-pyladies-pelican right now

What are the GitHub handles of the PyLadies chapter organizers?

Name | GitHub Handle | Slack Handle | Team Role |
| Bianca Rosa | @biancarosa | @bia | Maintainer |
| Jessica Temporal | @jtemporal | @jess (she/her/hers) | Maintainer |
| Ana Cecilia Vieira | @cecivieira | @ana Cecilia Vieira | Maintainer | |
| Giovana Morais | @giovana-morais | @giovana.morais | Maintainer |

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo:
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team:
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: Munich

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

PyLadies Munich
https://munich.pyladies.com/

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

[x] Yes
[ ] No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

https://munich.pyladies.com/

What are the GitHub handles of the PyLadies chapter organizers?

Name: Laysa Uchoa
GH: https://github.com/laysauchoa
Team Role: Organizer

Anton Caceres
https://github.com/MA3STR0
Team Role: Organizer

Olga Kupriyanova
https://github.com/okunahe
Team Role: Organizer

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]
  • Digital Ocean

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo:
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team:
  • Is the GitHub team added to the repo with maintain permissions?

ping @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: <PyLadies Tunis>

This template should be used for those requiring a new PyLadies website.

What is the name of the PyLadies chapter requesting the website?

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

  • Yes
  • No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

https://pyladies.com/locations/tunis/

What are the GitHub handles of the PyLadies chapter organizers?

Name GitHub Handle Slack Handle Team Role
PyLadies Tunis PyLadiesTunis Co-Founder & Co-Organizer
Mouna Belaid MounaBelaid Mouna Belaid Co-Founder & Co-Organizer
Amal Tlili atlili Amal Tlili Co-Founder & Co-Organizer
HΓ©dia Tnani HediaTnani HΓ©dia Tnani Co-Founder & Co-Organizer

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo:
  • Is the custom domain created?
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: Mouna Belaid, Amal Tlili, HΓ©dia Tnani, PyLadies Tunis
  • [] Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Requesting a new PyLadies Chapter website: Oakland

What is the name of the PyLadies chapter requesting the website?

Oakland

Have you registered your PyLadies chapter in the PyLadies Chapter Directory?

[x] Yes
[ ] No

If no, please visit the PyLadies Chapter Directory logged in with your official PyLadies email and complete the registration. If you do not finish this, a website will not be created.

What is the custom domain desired for the PyLadies chapter website?

oakland.pyladies.com

What are the GitHub handles of the PyLadies chapter organizers?

Name GitHub Handle Slack Handle Team Role
Linda Peng lpatmo lpnotes co-organizer
Bethany Garcia bethanyg bethanyg co-organizer

Do you want your website to use one of the following templates or do you prefer it to be blank?

Where will you host the website?

  • GitHub Pages
  • Heroku
  • Other: [Please specify as this is needed for @pyladies/tech-and-infra-admins to setup the DNS record accordingly]

Issue checklist

For the author to complete:

For the @pyladies/tech-and-infra-admins to complete:

  • Insert link to repo: https://github.com/pyladies/pyladies-oakland-website
  • Is the custom domain created? oakland.pyladies.com
  • Are the organizers added to a PyLadies team with proper permissions for the repo? Insert name of the team: pyladies/oakland
  • Is the GitHub team added to the repo with maintain permissions?

/cc @pyladies/tech-and-infra-admins

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.