Welcome to Neo Developer Portal Repository. This is an open-source community effort, so feel free to suggest new topics, add new content, and provide examples wherever you think it might be helpful. All documentation can be edited via GitHub.
How to contribute
Neo Developer Portal is built using Docusaurus v2.
- Fork the repo
- Setting up your local environment — This is optional.
- Make some changes
- Submit a PR to
dev
branch- Use pull_to_request template
- Netlify will pick up a PR and generate a publicly accessible preview fo you.
- Check the preview and confirm that it looks and function as expected
- Wait for a review
- Neo developer portal team will review your PR
- Acceptable PRs will be approved and merged into
dev
branch
- Release
- Neo developer portal team will periodically merge
dev
intomain
branch and it will automatically deploy to developers.neo.org - View history of releases on Github
- Neo developer portal team will periodically merge
How to create a tutorial
- Create a new directory in
tutorials
Using this formatYYYY-MM-DD-your-tutorial-title
- Create
[index.md](http://index.md)
inside the directory. - If your tutorial contains images, You can create a new directory at same level as the
[index.md](http://index.md)
file and put your images in there so you can refer to them in your markdown file like the following![img](assets/walletconnect-diagram.png)
- In your
index.md
you can use following front-matter tags
---
title: 'An Introduction to Contract Development on Neo'
description: "This tutorial will cover the basic structure of a decentralized application running on the Neo blockchain. It’s designed to be a brief survey of all aspects of development including architecture, contract development, backend logic, and front-end."
author: Link, the Operator
tags: ["BEGINNER", "NEONJS", "NEOEXPRESS","BOA","SMART CONTRACT"]
sidebar: true
image: ./assets/images/walletconnect-diagram.png
skill: BEGINNER
---