https://github.com/solana-turbin3/q1_25_builder_codebasebo
https://github.com/solana-turbin3/q1_25_builder_codebasebo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/solana-turbin3/q1_25_builder_codebasebo
- Owner: solana-turbin3
- Created: 2025-01-15T21:15:17.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-15T21:20:31.000Z (5 months ago)
- Last Synced: 2025-01-15T23:28:27.800Z (5 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Turbin3 Solana Project
## Overview
Turbin3 is a decentralized application built on the Solana blockchain. The project aims to## Prerequisites
- [Solana CLI](https://docs.solana.com/cli/install-solana-cli-tools) (v1.14.0 or later)
- [Rust](https://www.rust-lang.org/tools/install) (v1.65.0 or later)
- [Node.js](https://nodejs.org/) (v16 or later)
- [Anchor](https://project-serum.github.io/anchor/getting-started/installation.html) (v0.26.0 or later)## Installation
1. Clone the repository
```bash
git clone https://github.com/yourusername/turbin3.git
cd turbin3
```2. Install dependencies
```bash
npm install
```3. Build the Solana program
```bash
anchor build
```## Usage
### Local Development
```bash
# Start a local Solana validator
solana-test-validator# Deploy the program to localnet
anchor deploy# Run the frontend app
cd app
npm run dev
```### Testing
```bash
anchor test
```## Deployment
Instructions for deploying to Solana devnet or mainnet:```bash
# Configure Solana to use devnet
solana config set --url devnet# Deploy to devnet
anchor deploy
```## Contributing
1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request