Git Product home page Git Product logo

insound-cpp's Introduction

Server powering Insound, the music and sound hosting service for professional audio presentations (in development)

Gives composers and sound designers an approachable and customizable way to present interactive audio to their clients

For the frontend repository please visit here

Technologies Used

C++ CMake AWS MongoDB JWT FMOD

Getting Started

Eventually a public link will be provided at which the website will be hosted. For now, you will need to build the project locally.

When cloning this repository, please make sure to recursively initialize its submodules via git clone --recursive https://github.com/tadashibashi/insound-cpp or if it is already cloned, run git submodule update --init --recursive in the project root.

Supported Platforms

Currently, only Linux Ubuntu 23 (mantic) amd64 and macOS 14 arm (M1) are tested and supported.

Supporting Windows for development may be considered, if necessary.

System dependencies

Pease make sure the following are available on your system before building:

  • C++ 20 compiler (tested with clang 16)
  • cmake 3.24+
  • aws-sdk-cpp
  • ca-certificates
  • curl + libcurl
  • libasio
  • libmongoc 1.24+
  • libssl
  • zlib

Optional, for python build scripts

  • ninja
  • python 3.9+
  • psutil (optional)

Some Linux package distributors do not have recent enough versions of libmongoc, libcurl, or aws-sdk-cpp, etc. so you may need to compile and install them from source.

For a comprehensive installation command list, please check the Dockerfile in the repository root, which demonstrates a complete installation on Ubuntu Linux 23 (mantic) amd64.

External dependencies

These services are needed in order for the website to carry out its functionality. Please see Server Environment Variables below for setting the urls and credentials for these services.

  • MongoDB storage access with read/write rights
  • S3 storage key with read/write admin rights over all buckets
  • Nodemailer-compatible email service that implements receiving the basic JSON options in the message config

Server Environment Variables

Name Description
JWT_SECRET String for signing JSON web tokens
MONGO_URL MongoDB url, including password & port number
MONGO_DBNAME Name of server's mongo database
AWS_ENDPOINT_URL AWS Endpoint URL, including port if applicable
AWS_ACCESS_KEY_ID AWS Access ID string
AWS_SECRET_ACCESS_KEY AWS Secret Key string
S3_BUCKET Name of the server's S3 bucket
EMAIL_ENDPOINT_URL Endpoint for a nodemailer-compatible smtp service
EMAIL_ACCESS_KEY Access key for smtp service
EMAIL_AUTOMATED_SENDER Email address of the site's automated email sender
CSRF_SECRET_KEY Key to bypass csrf protection for dev purposes
CSRF_ALLOW_BYPASS "true" or "false": whether to allow secret key
PRODUCTION "true" if running in production mode

For local builds, you may create a .env file in the root of this repo, which will automatically load and populate the environment. (All .env are gitignored)

Build

Via Python script helper (Python 3.9+ should be installed):

# In the root directory of this repo:

# Grant executable permissions to python script file
chmod +x run

# Configure, build & run server
./run serve

# Configure, build & run tests
./run test

Without helper script:

# In the root directory of this repo:

# Configure build
mkdir build
cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug

# Build & run server
cmake --build build --config Debug --target insound-server
build/insound/server/insound-server

# Build & run test executable
cmake --build build --config Debug --target insound-tests
build/insound/tests/insound-tests

To build the frontend:

  • Bun should be installed
# In a working directory where you want to create the frontend repo, call:
git clone https://github.com/tadashibashi/insound-frontend

cd insound-frontend
bun install
bun run dev

If the script ran successfully, a dev server has started at which you may visit the frontend at http://localhost:5173, or where the terminal message indicates.

Running Tests

The server test suite provides and populates its own envionment variables, so regarding env variables no setup on your part is necessary. However, you will need:

  • MongoDB server running on your machine at mongodb://localhost:27017
  • AWS S3-compatible storage server running on your machine at http://localhost:9000

Docker Deployment

Granted that the external dependencies listed above are available and the environment variables are set accordingly, deploying via docker can be done via

    docker build . --platform=linux/amd64

Credits

Included as submodules

Library License
bcrypt BSD 4
catch2 Boost
crow BSD 3
glaze MIT
jwt-cpp MIT
mongo-cxx-driver Apache
spdlog MIT
zip Unlicense

Roadmap

  • Email API

    • Send emails
  • Auth API

    • Create Account (email confirmation with activation token)
  • User API

    • Authorization on private routes
    • Read Profile Page (private / public settings)
    • Patch profile info
    • Delete Account
  • Track API

    • Uploads include converted fsb
    • Download raw audio as ZIP
    • Patch
      • New audio tracks
      • Replace existing audio
      • Remove existing audio
      • All patches replace with new fsb
    • Delete
      • Ensure cascading deletion of all files on S3 + fsb
  • Test suites for all server routes

  • Future:

    • Admin routing
    • Windows dev support, if necessary

insound-cpp's People

Contributors

tadashibashi avatar

Watchers

 avatar  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.