Giter Club home page Giter Club logo

actix-web-demo's Introduction

Actix Web Demo

A demo web application made with actix-web.

Software

Development

  1. Start a PostgreSQL database. The easiest way is to run docker-compose up -d postgres.
  2. We use SQLx to manage our migrations. Set up the database with sqlx database setup.
  3. Run the application with cargo run.

To customize the log level, use the RUST_LOG environment variable.

Useful commands

  • Generate documentation: cargo doc, open it in a browser with --open.

  • Learn more about SQLx and migrations: sqlx -h

  • You can generate a new elliptic curve key pair with the following commands.

    # Generate private key
    openssl ecparam -name prime256v1 -genkey -noout -out private.ec.key
    # Convert to pkcs8 format and encrypt
    openssl pkcs8 -topk8 -in private.ec.key -out private.pem
    # Generate a corresponding public key
    openssl ec -in private.pem -pubout -out public.pem

    See https://stackoverflow.com/questions/15686821/generate-ec-keypair-from-openssl-command-line for more information.

Benchmarks

To discover performance bottlenecks, take a look at https://github.com/flamegraph-rs/flamegraph. Note that you might have issues installing it in WSL; if so, take a look at https://stackoverflow.com/a/65276025.

PERF=/usr/lib/linux-tools/5.4.0-120-generic/perf cargo flamegraph

actix-web-demo's People

Contributors

rudsvar avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.