Skip to content

GDGAracaju/rust-web-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Collaborative Rust Web Server Project - README

Welcome to the Rust Web Server Project! This project is focused on building a fully functional web server using the Rust programming language. Our aim is to work together as a team, learn from each other, and deepen our understanding of web development in Rust.

Project Overview

We are building a simple but robust web server using Rust. The project will cover:

  • Setting up a basic HTTP server
  • Handling routing and HTTP requests
  • Serving static files and dynamic content
  • Managing state and sessions
  • Integrating with databases
  • Security (HTTPS, authentication, etc.)
  • Testing and debugging web servers in Rust

We will be using Rust’s ecosystem for web development, including libraries like Hyper, Warp, or Actix, and will focus on writing performant, safe, and maintainable code.

Getting Started

Prerequisites

To contribute, ensure you have the following installed on your machine:

Setting Up

  1. Clone the repository:
  git clone https://github.com/your-username/rust-web-server-project.git
  cd rust-web-server-project
  1. Install dependencies:
cargo build
  1. Run the server:
cargo run

Project Structure

The project structure is organized as follows:

/src                  // Main project source code
/tests                // Unit and integration tests
/Cargo.toml           // Rust project manifest
/README.md            // This file!

As we build the project, this structure will grow with more routes, middlewares, database configurations, etc.

Contribution Guidelines

  1. Focus on Learning: Our goal is to learn web development in Rust together. If something is unclear or if you’re stuck, ask questions! We encourage collaboration and knowledge sharing among team members.
  2. No AI Tools Allowed: This is an educational project, so we ask that contributors do not use any AI-powered code generation tools (e.g., GitHub Copilot, ChatGPT). Writing and debugging the code yourself is crucial to learning. If you hit a roadblock, refer to the official documentation, our discussion channels, or ask for help from the team.
  3. Branching Workflow: We are using a branch-based workflow for collaboration. Here’s how to contribute:
  • Create a new branch for each feature or bugfix:

     git push origin feature-name
  • Once the feature is complete, push your branch:

      git push origin feature-name
  • Open a pull request (PR) from your branch to the main branch for review.

  • Code reviews will be done by other team members before merging into main.

  1. Write Idiomatic Rust: Aim to write idiomatic Rust code, following best practices. Ensure that your code is clean, maintainable, and efficient. We will be reviewing each other’s code and making improvements as a team.
  2. Documentation: Write clear comments and documentation, especially for complex logic. Document any APIs you create or important parts of the web server.
  3. Testing: Ensure that your contributions include tests, whether unit tests for small components or integration tests for complete routes or modules. The goal is to maintain high code quality.
  4. Code Reviews:
  • All PRs require at least one other team member to review them.
  • Respond to comments and suggestions from your reviewers, and implement necessary changes.
  • The main branch should always contain stable, functional code.

Project Workflow

  • Main Branch: The main branch is considered stable and production-ready.
  • Feature Branches: Every new feature or bugfix must be developed on a separate branch. Once it is ready and reviewed, it will be merged into the main branch.

Resources for Learning

Here are some resources to help you learn Rust and web development without using AI tools:

Communication

We will use [Discord/Slack/Email] (whichever platform is applicable) to communicate about progress, discuss issues, and help each other out. Please be active and check in regularly.

License

This project is licensed under the MIT License. See the LICENSE file for details.

We’re excited to have you on board and look forward to building this Rust web server together! Let’s make the most of this learning opportunity and grow as developers.

Happy coding! 🚀

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages