Giter VIP home page Giter VIP logo

ihk-betriebliches-abschlussprojekt's Introduction

GitLab-Suchmaschine

Project dependencies

Development

Setup

  • Install project dependencies (npm install)
  • Copy .env.dev to .env
  • Use Docker Compose by running dev/up.sh to get PostgreSQL and GitLab instances up and running.
    • GitLab will be available at http://172.52.0.100
    • PostgreSQL will be available at 172.52.0.10:5432
    • You can extract the initial admin password with dev/extractGitLabLogin.sh
  • Run prisma:migrate:dev to apply the migrations to the database

Running the application

  • Make sure the dev containers are running (dev/up.sh)
  • Run the application with npm run dev

Changing the database schema

  • Make changes to the schema in prisma/schema.prisma
  • Run prisma:migrate:dev to apply the changes to the database
    • This will generate a new migration in prisma/migrations/

Search Query Syntax

nonWhitespaceChar ::= (any printable character except ' ')
escapedChar ::= '\' (any printable character)
char ::= nonWhitespaceChar | escapedChar

regex ::= '/' char+ '/'
qualifier ::= char+ ':' (char+ | '"' char+ '"' | regex)
word ::= char+ | '"' char+ '"' | qualifier | regex

tokenizer output:
word | '(' | ')' | '&&' | '||' | 'NOT'

term ::= NOT? (word | '(' andOperation+ ')')
orOperation ::= term ('||' term)*
andOperation ::= orOperation ('&&' orOperation)*

query ::= andOperation+

ihk-betriebliches-abschlussprojekt's People

Contributors

spraxdev avatar

Watchers

 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.