All Projects β†’ rubymonsters β†’ speakerinnen_liste

rubymonsters / speakerinnen_liste

Licence: MIT License
International Women* Speaker Directory

Programming Languages

HTML
75241 projects
ruby
36898 projects - #4 most used programming language
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
CSS
56736 projects
Makefile
30231 projects

Projects that are alternatives of or similar to speakerinnen liste

Opensourcediversity.org
🌼 Code of https://opensourcediversity.org
Stars: ✭ 122 (+64.86%)
Mutual labels:  diversity
Diverse-RecSys
Collection of diverse recommendation papers
Stars: ✭ 39 (-47.3%)
Mutual labels:  diversity
CP-DSA-Cpp-C
πŸ•Ί Give me data and I will structure it! πŸ”₯
Stars: ✭ 27 (-63.51%)
Mutual labels:  diversity
Awesome Women In Tech
κ΅­λ‚΄μ™Έ ν…Œν¬ λΆ„μ•Ό μ—¬μ„±λ“€μ˜ ν™œμ•½μƒμ„ 아카이빙 ν•©λ‹ˆλ‹€.
Stars: ✭ 143 (+93.24%)
Mutual labels:  diversity
hackerinnen
hackerinnen.space is a project to provide encouragement and enhance visibility in different places
Stars: ✭ 22 (-70.27%)
Mutual labels:  diversity
OpenPRO58
Alternative firmware for Eachine PRO58
Stars: ✭ 14 (-81.08%)
Mutual labels:  diversity
Data Umbrella Scikit Learn Sprint
Jun 2020 scikit-learn sprint
Stars: ✭ 93 (+25.68%)
Mutual labels:  diversity
conference-diversity-and-inclusion
Diversity and Inclusion Guidelines for Conferences
Stars: ✭ 14 (-81.08%)
Mutual labels:  diversity
marcellelee.github.io
No description or website provided.
Stars: ✭ 27 (-63.51%)
Mutual labels:  diversity
Silicon-Valley-Diversity-Data
Download EEO-1 reports from Silicon Valley tech companies. Compiled by Reveal from The Center for Investigative Reporting
Stars: ✭ 33 (-55.41%)
Mutual labels:  diversity
Discover Cookbook
The NumFOCUS DISCOVER Cookbook (Diverse & Inclusive Spaces and Conferences: Overall Vision and Essential Resources). A guide for organizing more diverse and inclusive events and conferences, produced by the NumFOCUS Diversity & Inclusion in Scientific Computing (DISC) Program, with support from the Moore Foundation.
Stars: ✭ 152 (+105.41%)
Mutual labels:  diversity
Selfrando
Function order shuffling to defend against ROP and other types of code reuse
Stars: ✭ 182 (+145.95%)
Mutual labels:  diversity
diversity-index
A curated Diversity-Index of grants, scholarships and FA that encourages diversity in STEM fields aimed at half the world's population, Women!
Stars: ✭ 60 (-18.92%)
Mutual labels:  diversity
Awesome Culture
A curated list of awesome thought on tech culture. Inspired by the various awesome-* projects
Stars: ✭ 126 (+70.27%)
Mutual labels:  diversity
nyc-2019-scikit-sprint
NYC WiMLDS scikit-learn open source sprint (Aug 24, 2019)
Stars: ✭ 28 (-62.16%)
Mutual labels:  diversity
Generative Evaluation Prdc
Code base for the precision, recall, density, and coverage metrics for generative models. ICML 2020.
Stars: ✭ 117 (+58.11%)
Mutual labels:  diversity
bayarea-2019-scikit-sprint
Bay Area WiMLDS scikit-learn open source sprint (Nov 2, 2019)
Stars: ✭ 16 (-78.38%)
Mutual labels:  diversity
meetup-presentations brisbane
R-Ladies Brisbane Chapter repository of presentations and host toolkit.
Stars: ✭ 16 (-78.38%)
Mutual labels:  diversity
concentrationMetrics
A python library for the computation of various concentration, inequality and diversity indices
Stars: ✭ 26 (-64.86%)
Mutual labels:  diversity
contributor covenant
Pledge your respect and appreciation for contributors of all kinds to your open source project.
Stars: ✭ 1,534 (+1972.97%)
Mutual labels:  diversity

Build Status Code Climate

About speakerinnen.org

speakerinnen.org is a searchable web directory designed specifically for women conference speakers. Women speakers are encouraged to sign up and provide professional information, including their area of expertise, any previous conferences they've presented at, contact details, etc.

The aim of the app is to provide a way for conference and event organizers to find and contact appropriate women speakers. (But obviously there are many different contexts in which it can be used...)

Getting Started (Initial Setup)

  1. Clone the repository: git clone [email protected]:rubymonsters/speakerinnen_liste.git and access the folder: cd speakerinnen_liste. (If you have cloned the repository before and there is still an .env file, delete it.)
  2. Copy the file database.yml.sample and name it database.yml inside the config folder. (The sample-file is a placeholder showing the standard usecase. The file database.yml is for individual usage and changes and is ignored by git.)
  3. If you don't have Docker Engine installed, please download it here for your operating system.
  4. Run make setup (builds images, installs gems, creates and migrates the datasase).
  5. Run make seed (seeds database with example profiles and indexes them in Elasticsearch).

Local development with Docker (default)

  • make dev (opens a development shell, rake, bundle or rails commands will work here)
  • make up (starts the app directly)
  • make stop (stops the container)
  • make test (runs all the tests)
  • make usage (get a list of possible commands)

Local development without Docker (this is a workaround)

You need to define DATABASE_URL to point to your local Postgres and SEARCHBOX_URL to point to your local Elastic (Make sure those are set up with the right versions, etc.):

This command for example runs the tests directly on your machine using the local postgres and elastic:

$ DATABASE_URL=postgres://127.0.0.1/ SEARCHBOX_URL=http://127.0.0.1:9200/ bundle exec rspec

This matches our settings in config/database.yml, but if you have different user, password or db name you can put all that in DATABASE_URL as explained here: https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING. Or you comment out host, username and password in your config/database.yml.

Issues you might run into:

  1. Docker might create files in tmp that the process in your machine can't overwrite. Do sudo rm -rf tmp to delete.
  2. Rails can't write to log/test.log and might print to screen instead. To delete do: sudo rm -rf log/
  3. If you have problem with bundle install, throw away the Gemfile.lock and re-run the command.

Admin user

If you build or test admin features, you can use the test admin user to test those. The admin user can be found in db/seeds.rb.

Alternatively, assign the admin status to another user via the rails console:

# Open a dev shell
$ make dev

# Log into the rails console
$ bundle exec rails c

# Inside the rails console
user = Profile.find(<your-profile-id>)
user.admin = true
user.save

# Verify your user admin status
user.valid?

# => true

Testing

First, open a dev shell by running make dev.

# Run all tests of the project (same as running `make test`)
$ bundle exec rspec spec

# If the tests are still failing, run:
$ bundle exec rake db:test:clone

# If tests are still failing, run:
$ rails db:test:prepare

# Run tests excluding elasticsearch specs, so without a running elasticsearch server
$  bundle exec rspec spec --tag '~elasticsearch'

Please use Rubocop

# Open a dev shell
$ make dev
# Run rubocop and correct all errors it finds
$ rubocop -a

Database:

Our database schema looks like that:

db

Metrics

For seeing our metrics we use the free community edition of honeyycomb ( https://ui.honeycomb.io/login ) More infos how to use this: https://docs.honeycomb.io/beeline/ruby/

Logging

We are using papertrail. heroku addons:open papertrail --app speakerinnen-liste

Report Errors

We are using sentry. heroku addons:open sentry --app speakerinnen-liste

Deployment

We use Heroku to deploy.

Contributing

Do you want to contribute?

If you want to contribute, you can get an overview over the open issues on our Project Management Board and via #216.

We are happy to answer your questions if you consider to help. All the issues have a link to their specification. If you want to work on an issue feel free to assign yourself.

Find further details in CONTRIBUTING.md.

#Troubleshooting

Docker

Use upgraded Postgres or Elasticsearch version in Docker

If Postgres or Elasticsearch got upgraded in the docker-compose file, you need to delete all processes, images and volumes that still use the olde version:

  1. Use make tear-down to delete all processes and images

  2. Delete all your local volumes inside Docker as well. (Otherwise you will get a DB connection error) Check for your speakerinnen volumes in Docker: docker volume ls Ouput will be a list of volumes, pick all the speakerinnen ones (Postgres, Elasticsearch, Bundle) and delete them (adjust the name if yours is different):

    docker volume rm speakerinnen_liste_postgres_data

    docker volume rm speakerinnen_liste_bundle

    docker volume rm speakerinnen_liste_elastic_data

  3. make setup to recreate all images, processes and volumes.

  4. make seed to populate the volumes.

β™₯ Code of Conduct

Please note that speakerinnen has a Contributor Code of Conduct based on the Contributor Covenant. By participating in this project online or at events you agree to abide by its terms.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].