The Decentralized Climate Foundation Documentation Repository
Go to file
PaganoBerserker 487a8a518f
Se agregaron emojis y se corrigio formato.
2023-05-22 14:37:05 -06:00
_includes Se agrego el Readme 2023-03-29 15:43:20 +00:00
_layouts Se agrego la carpeta Jekyll de Hotfix a Develop 2023-03-20 18:04:09 +00:00
_pages some title updates and order 2023-03-29 12:38:16 -06:00
_posts Se creo los archivos par alas imagenes en assets 2023-05-17 12:45:20 -05:00
assets Delete 1.md 2023-05-17 14:03:50 -06:00
.gitignore Se agrego la carpeta Jekyll de Hotfix a Develop 2023-03-20 18:04:09 +00:00
404.html Se agrego la carpeta Jekyll de Hotfix a Develop 2023-03-20 18:04:09 +00:00
Gemfile Se agrego la carpeta Jekyll de Hotfix a Develop 2023-03-20 18:04:09 +00:00
Gemfile.lock Se agrego la carpeta Jekyll de Hotfix a Develop 2023-03-20 18:04:09 +00:00
LICENSE Se agrego la carpeta Jekyll de Hotfix a Develop 2023-03-20 18:04:09 +00:00
README.md Se agregaron emojis y se corrigio formato. 2023-05-22 14:37:05 -06:00
_config.yml Se cambio una palabra 2023-03-29 19:04:27 +00:00
index.md Se agrego el index sin permalinks 2023-05-17 11:53:54 -05:00

README.md

title author date category layout
DOCUMENTS REPOSITORY README Decentralized Climate Foundation 2022-02-04 README post

👾 GNUv1.3 License GitHub contributors 👾

💻 Introduction 💻

The purpose of the README is to guide on how to contribute to the DCF

And not die in the process.

System requirements. 🗃️

  • Knowledge of Git and GitHub.
  • Having previously read the Jekyll documentation.
  • Basic concepts about IPFS.
  • Access to Fleek account or creating one.
  • You must have installed Rubygems (check your Gems version using gem -v),GCC, and Make (check versions using gcc -v, g++ -v, and make -v), as well as Ruby 2.5.0 (check your Ruby version using ruby -v).

📜 How to contribute to DCF. 📜

📓 "Verify that there are no issues in DCF." 📓

"Verify that there are no issues in DCF that address the contribution or problem you wish to collaborate on (as it may have already been started by another user)."

You can check the issues at the following link:

🛰️ "How to create a proposal or an issue:" 🛰️

If you have previously verified that the proposal or issue does not exist, you can write it following the following format:

After accessing the issues link, we must check if there is no related proposal or issue on the list. If we realize that there is none, we can add one by clicking on the + sign and assigning a brief title to it.

Img1: At the bottom of the issues, you can add a new one (Remember to check that there is no related open issue and its status).


👁️‍🗨️ To create an issue in Github, follow these steps: 👁️‍🗨️

  1. Access the repository page where you want to create the issue.
  2. Click on the "Issues" tab at the top of the page.
  3. Click on the green "New issue" button at the top right of the page.
  4. Write a brief and descriptive title for the issue in the "Title" field.
  5. Describe the problem in detail in the "Write" field.
  6. If applicable, use the text formatting options to add formatting, images, or links.
  7. Label the issue with appropriate tags to make it easier to find and organize. Tags can be customized by the repository or used from a list of common tags.
  8. Assign the issue to a responsible team member or leave it unassigned if not necessary.
  9. If applicable, set a due date for the issue.
  10. Click the green "Submit new issue" button to publish the issue.

It is important to provide all relevant information so that others can understand the problem and help resolve it. Additionally, it is important to label the issue correctly to make it easier to find and organize. If possible, a proposed solution or suggestions to help solve the problem can also be provided.


💬 How to contribute after creating my issue 💬

You must clone the docs repository to your computer (having the necessary tools and packages to run Jekyll on your computer).

If you don't have what is necessary to run the repository, you can install what is pertinent for Jekyll by clicking on the link.

When you have the repository perfectly installed and configured, you create, improve or solve your issues and send screenshots in the same issue (as responses to it) where we can see the changes and that it works.

If you need to access the Issues section of DCF again, you can click on the link.

Send a Pull Request to the Develop branch of DCF docs, filling in the requirements, such as a brief title and comments on what was done. If everything is approved, your issue will be marked as completed and the changes will be added to the project.

Suggestions:

As DCF is a decentralized project, remember that any file, image, or document that you want to contribute needs to have a reasonable size to avoid conflicts when processing it. There are ways to compress it.

HOW TO MAKE A POST

How to Make a Post in a Jekyll Repository

If you want to publish a post or article on docs.decentralizedclimate.org, follow these steps:

  1. Create a markdown file in the following directory if it's for the DCF directory:
https://github.com/DECENTRALIZEDCLIMATE/docs/tree/develop/_posts/
or in the following directory if it's for social services:
https://github.com/DECENTRALIZEDCLIMATE/docs/tree/develop/_posts/socialserv
  1. The post must contain the following data: 2.1. A header with the following data in markdown format:
---
title: Git & Gitflow Cheetsheet EN
author: Decentralized Climate Foundation
date: 2023-03-15
category: git-flow
layout: post
---

2.2. A file name starting with the date in the format YYYY-MM-DD-myposttopic.md. Some examples already exist in the directory.

  1. Add a link to the post in the DCF or social services directory by following these steps: 3.1. For the social services directory, go to the following link and paste the markdown of the post under the "Mans & CheetSheets" section in the following format:
## :fire:  Mans & CheetSheets :fire:

| Document | Last Update |
| -------- | -------- |
| [Git & GitFlow ES]({% post_url socialserv/2023-03-15-gitflowCheetSheet_ES %}) |  2023-02-16 |
| [Git & GitFlow EN]({% post_url socialserv/2023-03-15-gitflowCheetSheet_EN %}) |  2023-02-16 |

3.2. Similarly, for the DCF directory, add a link with these example directives to the following link:

https://github.com/DECENTRALIZEDCLIMATE/docs/blob/develop/index.md

Note that the URL is not a permalink. It is in the format YYYY-MM-DD-myposttopic without the .md extension.

  1. Optional: You can fork the project on your user account on the develop branch and link it to hackmd.io to edit before making a commit to your own repository. Then, submit a pull request, or edit the post directly in the GitHub editor.

  2. When your request is accepted on the develop branch, it will appear on the following link:

develop branch website

  1. Additionally, if you want to add images to your post, place them in the assets directory. Please refer to the README.md for more information.

  2. If you have any questions, you can convene a meeting or workshop with the board of directors.

License. 🦾

Copyright (C) DECENTRALIZED CLIMATE FOUNDATION A.C.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License". 

Contact: 📲

Decentralized Climate Foundation

CONTACT AND DEVELOPERS

Work developed in collaboration with the Decentralized Climate Foundation.

Author:

Reviewer: