contributing
Last updated
Was this helpful?
Last updated
Was this helpful?
The Django Girls Tutorial Extensions is licensed under a license. Everyone is free to add, edit and correct the tutorial.
The source code of the tutorial extensions is . The GitHub is used to accept and review changes.
The tutorial extensions uses the project for publishing its documentation. .
The tutorial extensions is written in .
You can find any discussions about the contents of the tutorial extensions on the .
platform is used to manage translations. If you want to join an existing translation team or launch a new translation, send an email to the or contact . If you want to propose some small changes or fix typos in existing translations, please create a Pull Request.
For contributing to the tutorial extensions the following is needed to get started:
a
in the case of complex edits familiarity with or familiarity with an app (, ) to push your edits made on your computer to GitHub.
First fork the repository to your personal GitHub account:
This command line tool use make
to create development environment. It is optional to use this tool. While building the document, it builds the document for every language. The build process can be limited to any one language using this tool and reduce build time considerbly. Afterwards, the translation to other languages are done from crowdin localization process.
Usage instructions are available though make help
command.
Try the command make dev
to start development process.
For simple changes like typo corrections you can use the GitHub online editor:
Open your local fork page on GitHub,
go to README.md file in any chapter,
press the Edit icon (pen)
and you can edit the chapter directly on github.com.
Markdown syntax is used to edit the individual pages of the tutorial.
Save your changes and create a pull request as explained below.
For adding new chapters, writing longer snippets of text or adding images, you need to get a copy of the tutorial to your local computer.
Either use the GitHub app for your operating system (mentioned above) or git
command line to get the repository locally. You get the repository address from the front page of your own GitHub repository fork:
Move to the folder containing the project, to run the following commands.
Then, create a branch for your new changes to sit in. It helps to call the branch something related to the changes you are going to make.
To preview and serve local files, with auto-reload capabilities, run HonKit using:
The local server will be available at http://localhost:4000. If auto-reload is slow, you can temporarily remove unwanted languages from LANGS.md
, to speed up the process.
Then commit the changes using git
and push the changes to your remote GitHub repository.
Example:
In your own repository on GitHub press do Compare & pull request
Fill in the information why this change is being made. The reviewer can see the details of the actual change, so you don't need repeat the content of the change.
Then press Create pull request.
GitHub emails will notify you for the follow up process.
Install the project's requirements using .
After you have finished your changes you need to create on GitHub. DjangoGirls will get notified about the pull request, review your changes, suggest any corrections if needed and then pull your changes to the master version.
GitHub has an excellent . Check it out if you need help!
For further questions please .