Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/solana-developers/solana-cookbook
https://github.com/solana-developers/solana-cookbook
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/solana-developers/solana-cookbook
- Owner: solana-developers
- Created: 2021-11-04T01:13:31.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-27T02:10:46.000Z (4 months ago)
- Last Synced: 2025-01-10T04:04:26.256Z (9 days ago)
- Language: TypeScript
- Homepage: https://solanacookbook.com/
- Size: 39.8 MB
- Stars: 649
- Watchers: 13
- Forks: 345
- Open Issues: 90
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
- awesome - solana-developers/solana-cookbook - (TypeScript)
README
# Solana Cookbook
The Solana Cookbook is meant to house small digestible code snippets
for someone that has no experience with blockchain or Solana to be able
to grab and go.## Contributing
The Cookbook is welcome to any and all contributions. Please refer to
the project's style when contributing new snippets of code.### Structure
Currently we have "topics" under `/docs` and the code for those topics
lives under `/code/`.### References
References are an overarching topic with a list of references of how to do
things under that topic. The general structure is the following:```
Code Reference TitleShort Summary
Code Snippet
```### Guides
Guides are longer form informational documentation on various topics.
The general structure for writing a guide is the following:```
Brief Summary/TLDRFact Sheet
Deep Dive
Other Resources
```### Building
We recommend building and running the documentation in a development container
(requires Docker to be installed).
A `Dockerfile` is included in the `.devcontainer` directory which can be built
and run manually using docker or automatically by VS Code
([Instructions here](https://code.visualstudio.com/docs/remote/containers)).To build and run perform the following commands in the terminal
(within the container if using the dev container)```
yarn install
yarn start
```It will take some time to start, the documentation can then be viewed
at (http://localhost:8080/)### Committing
We are using [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/)
for this repository.To choose a task or make your own, do the following:
1. [Add an issue](https://github.com/solana-developers/solana-cookbook/issues/new) for the task and assign it to yourself or comment on the issue
2. Make a draft PR referencing the issue.The general flow for making a contribution:
1. Fork the repo on GitHub
2. Clone the project to your own machine
3. Commit changes to your own branch
4. Push your work back up to your fork
5. Submit a Pull request so that we can review your changes**NOTE**: Be sure to merge the latest from "upstream" before making a
pull request!You can find tasks on the [project board](https://github.com/solana-developers/solana-cookbook/projects/1)
or create an issue and assign it to yourself.Happy Cooking!