This is the official GitHub organization for BreakBuddy.be

Overview
BreakBuddy logo

Welcome to BreakBuddy!

This is the repo for the breakbuddy website. BreakBuddy is an initiative to help users choose their next holiday destination in an easy and enjoyable way. Our website provides a fun and easy-to-use interface for users all around to world. Our buddy 🐦 will simply ask users a few questions and then recommend the best possible holiday destination that we have in our database. BreakBuddy is a non-profit organisation and our code is completely open-source ❤️ .

Copyright Ⓒ 2022 - Hursit Tarcan ®

Table of contents

How to contribute as a developer

This project follows the all-contributors specification. Contributions of any kind are welcome! ❤️

This part of the readme.md is dedicated to code contributions 💻 .

1. Submit an issue

  • Create a new issue.
  • Comment on the issue (if you'd like to be assigned to it) - that way our team can assign the issue to you.

2. Fork the repository (repo)

If this is your first time forking our repo, this is all you need to do for this step:

$ git clone [email protected]:[your_github_profile]/BreakBuddy.git

If you've already forked the repo, you'll want to ensure your fork is configured and that it's up to date. This will save you the headache of potential merge conflicts.

To configure your fork:

$ git remote add upstream https://github.com/BreakBuddy/BreakBuddy

To sync your fork with the latest changes:

$ git checkout main
$ git fetch upstream
$ git merge upstream/main

3. Make awesome changes!

  1. Create new branch for your changes
$ git checkout -b new_branch_name
  1. Start developing!
$ Add features, fix bugs, etc... 
  1. Commit and prepare for pull request (PR). In your PR commit message, reference the issue it resolves (see how to link a commit message to an issue using a keyword).
$ git commit -m "brief description of changes [Fixes #1234]"
  1. Push to your GitHub account
$ git push origin

4. Submit your PR

  • After your changes are committed to your GitHub fork, submit a pull request (PR) to the main branch of the HursitTarcan/BreakBuddy repo
  • In your PR description, reference the issue it resolves (see linking a pull request to an issue using a keyword)
    • ex. Updates out of date content [Fixes #1234]
  • Confirm your preview deploy looks & functions as expected

5. Wait for a review

  • Our team will review your PR
  • Acceptable PRs will be approved & merged into the main branch

How to contribute as a translator

This project follows the all-contributors specification. Contributions of any kind are welcome! ❤️

This part of the readme.md is dedicated to translation contributions 📝 .

1. Submit an issue

  • Create a new issue, specify the language that you would like to add.
  • Anyone can create a new issue (code contributions are not needed for this).
  • Comment on the issue (if you'd like to be assigned to it) - that way our team can assign the issue to you.
  • You will be asked to upload a txt file with your translation, this can be done via Discord.

2. Wait for a review

  • Our team will review your translation.
  • Acceptable translations will be approved & merged into the main branch.

How to contribute to content

This project follows the all-contributors specification. Contributions of any kind are welcome! ❤️

This part of the readme.md is dedicated to content contributions 💡 .

1. Submit an issue

  • Create a new issue.
  • Anyone can create a new issue (code contributions are not needed for this).
  • Specify the new feature you would like to add, (design proposal, content change, add new destinations, etc...)
  • Comment on the issue (if you'd like to be assigned to it) - that way our team can assign the issue to you.
  • Our team will contact you via the issue.

2. Wait for a review

  • Our team will review your content change.
  • Acceptable content changes will be approved & merged into the main branch.

Give us feedback

This project follows the all-contributors specification. Contributions of any kind are welcome! ❤️

This part of the readme.md is dedicated to feedback contributions .

1. Submit an issue or send us a DM via Discord

  • Create a new issue, specify your feedback.
  • Anyone can create a new issue (code contributions are not needed for this).
  • Our team will contact you via the issue.

2. Wait for a review

  • Feedback is greatly appreciated.
  • Acceptable changes will be approved & merged into the main branch.
  • Thank you for your feedback ❤️ .
Copyright Ⓒ 2022 - Hursit Tarcan ®
You might also like...

Automatically sync your leetcode solutions to your github account - top 5 trending GitHub repository

Automatically sync your leetcode solutions to your github account - top 5 trending GitHub repository

LeetHub - Automatically sync your code to GitHub. Top 5 Trending JavaScript Repositories Available on: What is LeetHub? A chrome extension that automa

Dec 31, 2022

Create a badge using GitHub Actions and GitHub Workflow CPU time

Generated Badges Create a badge using GitHub Actions and GitHub Workflow CPU time (no 3rd parties servers) Install $ npm i generated-badges -g Command

Dec 30, 2022

GitHub Action that posts the report in a comment on a GitHub Pull Request from coverage data generated by nyc (istanbul)

GitHub Action that posts the report in a comment on a GitHub Pull Request from coverage data generated by nyc (istanbul)

GitHub Action: Report NYC coverage GitHub Action that posts the report in a comment on a GitHub Pull Request from coverage data generated by nyc (ista

Nov 23, 2022

GitHub starter project link: https://github.com/buildspace/waveportal-starter-project

Running React on Repl.it React is a popular JavaScript library for building user interfaces. Vite is a blazing fast frontend build tool that includes

Jun 5, 2022

Github Actions를 사용해 Github issue와 Notion 데이터베이스를 동기화하여 Notion에서 팀원들과 진행상황을 쉽게 공유해보세요🥳

Github Actions를 사용해 Github issue와 Notion 데이터베이스를 동기화하여 Notion에서 팀원들과 진행상황을 쉽게 공유해보세요🥳

Github Actions x notion-sdk-js x docker Demo Abstract notion-sdk-js는 Notion 데이터베이스와 Github의 issue의 를 동기화시켜주는 Node-JS application 입니다. 이를 사용하기 위해선 사용자가

Nov 27, 2022

Render (GitHub Flavoured with syntax highlighting) Markdown, and generate CSS for each of GitHub’s themes.

render-gfm Render (GitHub Flavoured with syntax highlighting) Markdown, and generate CSS for each of GitHub’s themes. GitHub Repository npm Package Do

Oct 10, 2022

A GitHub action to submit your dependency graph from your Mill build to GitHub.

Mill Dependency Submission A GitHub action to submit your dependency graph from your Mill build to GitHub via their Dependency Submission API. The mai

Dec 15, 2022

A Docusaurus website deployed to GitHub Pages using GitHub Actions.

Deploy Docusaurus website to GitHub Pages using GitHub Actions This repository is an example of deploying a Docusaurus website to GitHub Pages using G

Dec 26, 2022

This site compares your GitHub Profile to your friends, and analyses and tells your GitHub profile score too.

GitHub ⚔️ Duel Deployed at 🚀 : https://githubduel.vercel.app/ Compare your GitHub profiles with your friends It gives score to GitHub profile based o

Nov 21, 2022
Comments
  • Country array does not reset after clicking 'restart'

    Country array does not reset after clicking 'restart'

    The possibleCountry array that stores the possible countries does not refresh after clicking restart at the end of the game. This bug causes previous ok countries to stay in the array, this bug leads to misleading advising.

    opened by hursittarcan 2
  • Add Antarctican Countries To BreakBuddy

    Add Antarctican Countries To BreakBuddy

    BreakBuddy has no Antarctican countries atm.

    • Create the initializeAntarcticanCountries function.
    • Add new Antarctican countries via the new function.
    opened by hursittarcan 0
  • Add South-American Countries To BreakBuddy

    Add South-American Countries To BreakBuddy

    BreakBuddy has no South-Americancountries atm.

    • Create the initializeSouthAmericanCountries function.
    • Add new South-American countries via the new function.
    opened by hursittarcan 0
  • Add North-American Countries To BreakBuddy

    Add North-American Countries To BreakBuddy

    BreakBuddy has no North-American countries atm.

    • Create the initializeNorthAmericanCountries function.
    • Add new North-American countries via the new function.
    opened by hursittarcan 0
Releases(API_v1.1.0)
  • API_v1.1.0(Jun 22, 2022)

    WHAT'S NEW 🥳:

    • This repo has officially been deployed with Heroku 💯

    COMING SOON 🕐:

    • New repositories will be coming soon (website, desktop app and mobile app). 💯
    Source code(tar.gz)
    Source code(zip)
  • API_v1.0.0(Jun 20, 2022)

    WHAT'S NEW 🥳:

    • This repo has been refactored, from now on the api, website, desktop app and mobile app will have separate repositories.
    • This repo has officially been deployed with Zeet! 💯 (https://1ok7h2tdk2.execute-api.eu-west-2.amazonaws.com/)

    COMING SOON 🕐:

    • Custom domain will be added to API URL.
    • New repositories will be coming soon (website, desktop app and mobile app). 💯
    Source code(tar.gz)
    Source code(zip)
  • v2.1.0(May 15, 2022)

    WHAT'S NEW:

    • Add new flags to the API.

    COMING SOON:

    • Add new countries to the API.
    • Make frontend responsive (mobile).
    • Make a BreakBuddy desktop application.
    Source code(tar.gz)
    Source code(zip)
  • v2.0.0(May 14, 2022)

    WHAT'S NEW:

    • BreakBuddy API is working fine.
    • BreakBuddy frontend is working fine.

    COMING SOON:

    • Add new countries to the API.
    • Add new flags to the API.
    • Make frontend responsive (mobile).
    • Make a BreakBuddy desktop application.
    Source code(tar.gz)
    Source code(zip)
  • v1.1.0(May 13, 2022)

    WHAT'S NEW:

    • BreakBuddy API is working fine.
    • BreakBuddy frontend is working fine.

    COMING SOON:

    • Add new countries to the API.
    • Add new flags to the API.
    • Make frontend responsive (mobile).
    • Make a BreakBuddy desktop application.
    Source code(tar.gz)
    Source code(zip)
  • v1.0.0(May 11, 2022)

Owner
BreakBuddy
BreakBuddy
Hemsida för personer i Sverige som kan och vill erbjuda boende till människor på flykt

Getting Started with Create React App This project was bootstrapped with Create React App. Available Scripts In the project directory, you can run: np

null 4 May 3, 2022
Kurs-repo för kursen Webbserver och Databaser

Webbserver och databaser This repository is meant for CME students to access exercises and codealongs that happen throughout the course. I hope you wi

null 14 Jan 3, 2023
Cloney - Clone all Github repositories from a user or organization

Cloney - Clone all Github repositories from a user or organization How to use $ cloney (users|orgs) (name) Preview Installation Prerequisites NodeJS E

Breydan 2 May 28, 2022
New base script bot wa by Ramdani Official, don't forget to subscribe youtube Ramdani Official.

Requirements • Installation • Thanks to • Official Group Bot • Donate Information bahasa Indonesia Ramdani Botz V17 adalah bot yang di ciptakan oleh R

Ramdani Official 22 Nov 1, 2022
You can detect requested client full IP details with this package. (isp, organization, location, residential/data center, proxy, etc)

requested client ip details Install the package npm npm install @sarequl/client-ip-details yarn yarn add @sarequl/client-ip-details example with expr

Sarequl Basar 8 Oct 13, 2022
Catalogist is the easy way to catalog and make your software and (micro)services visible to your organization in a lightweight and developer-friendly way.

catalogist ?? ?? ?? ?? ?? The easy way to catalog and make your software and (micro)services visible to your organization through an API You were a pe

Mikael Vesavuori 11 Dec 13, 2022
The project integrates workflow engine, report engine and organization authority management background, which can be applied to the development of OA, HR, CRM, PM and other systems. With tlv8 IDE, business system development, testing and deployment can be realized quickly.

介绍 项目集成了工作流引擎、报表引擎和组织机构权限管理后台,可以应用于OA、HR、CRM、PM等系统开发。配合使用tlv8 ide可以快速实现业务系统开发、测试、部署。 后台采用Spring MVC架构简单方便,前端使用流行的layui界面美观大方。 采用组件开发技术,提高系统的灵活性和可扩展性;采

Qian Chen 38 Dec 27, 2022
This project is based on the Awesome Books app repo, refactored with ES6 and organized with modules. The purpose of this project is to learn functionality organization using JavaScript modules.

Awesome Books with ES6 and modules A basic app project built with HTML, CSS and JS ES6 to keep track of awesome books. Built With HTML/CSS and JS best

Karla Delgado 10 Aug 27, 2022
official github mirror of gg-struggle

gg-struggle tl;dr gg-struggle is a program that reduces loading times by caching the Guilty Gear server responses, reducing slowdowns caused by latenc

cybermelon 28 Mar 12, 2022
A alternative to Github Copilot for vscode until you get the access to github copilot

Clara-Copilot ?? Code Howdy ?? I know you guys are ?? waiting for Github Copilot Here is a alternative one for now ?? ⭐ Star is all i want nothing muc

BadBoy17G 245 Jan 8, 2023