Giter VIP home page Giter VIP logo

eventplanner's Introduction

EventPlanner

SurrealDB License Continuous integration Release

Overview

The application allows you to dynamically manage votings / adjustments for your future events, without a giant data collection. As the application only relies on the surrealdb backend and a small init-executable for migrations and table adjustments it's very lightweight without unnecessary functions.

Here is a quick summup of the functionality:

  • Reusable: each event is directly linked to a particular account, which can be created by everyone
  • Overview: the application shows you all the needed data concerning the possible dates and the client votes
  • No data-collection: only a username is saved for the identification by the event organizer for every planned visitor. We don't require something like an E-Mail or something comparable
  • Quick: a simple url sent to the visitor and everything goes on

Deployment

Currently, are only deployments with docker supported:

Image description use-case
ghcr.io/randoooom/eventplanner:latest the full application with a frontend powered by nitrojs and ssr everything which doesn't require static
ghcr.io/randoooom/eventplanner:static only static frontend without any ssr powered by nginx and nuxt-ssg for static enforced context or low-resource servers

Possible configuration

# docker-compose.yml

version: "3"
services:
  database:
    image: surrealdb/surrealdb:latest
    environment:
      - SURREAL_USER=<USERNAME>
      - SURREAL_PASS=<PASSWORD>
    volumes:
      - ./data:/var/lib/surreal
    restart: always
    command: start file:///var/lib/surreal
    ports:
      - "8080:8000"
  frontend:
    image: ghcr.io/randoooom/eventplanner:static
    depends_on:
      - database
    environment:
      - RUST_LOG=info
      - SURREALDB_ENDPOINT=database:8000
      - SURREALDB_USERNAME=<USERNAME>
      - SURREALDB_PASSWORD=<PASSWORD>
      - NUXT_PUBLIC_SURREALDB_ENDPOINT=<PUBLIC_SURREALDB_ENDPOINT>
    ports:
      - "8000:80"

nginx:

# site.conf

server {
  listen 80;
  listen [::]:80;
    
  location / {
    proxy_pass http://localhost:8000;
  }

  location /surrealdb/ {
    proxy_pass http://localhost:8080/;
  }
}

Demo

An demo application deployed using ghcr.io/randoooom/eventplanner:static is deployed here.

Roadmap

  • more tests
  • ui/ux adjustments
  • index page

License

The Source-Code is licensed under the AGPL v3.0 license.

eventplanner's People

Contributors

randoooom avatar

Watchers

 avatar

eventplanner's Issues

Localization

May infer the locale of displayed dates from the current vue-i18n locale. Also cleanup the locale-files / object structure and support more locales

Mobile cant copy voting link

For some reason the creation of a visitor works, but it still throws an error in the frontend. Also the copy button does not work while deletion does

Indexpage

May add an explanation of the application to the root page and also include the README there.

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.