Git Product home page Git Product logo

uis's Introduction

University information system

This application was developed during the course Advanced Software Engineering (ASE) at the Vienna University of Technology (TU Wien) in the winter term 2016.

This tool is a university information system that assist students in selecting their courses in a smarter way.

Main features

  • Admins manage everything including users, study plans and subjects
  • Students manage their courses and study plans
  • Students can generate their certificates as a pdf
  • Students get recommendations about courses
  • Lecturers create courses and assign grades to students

Some screenshots

login view courses view course-details view recommendations view studyplans view certificate view

Setup and running

1. Installing postgres and configuring it in spring (optional as an embedded db is used for the moment)

Make sure you have installed postgres, set a password and created a new database. Then you can configure your spring boot application:

#configure postgres
spring.datasource.url=jdbc:postgresql://localhost:5432/<your_db_name>
spring.datasource.username=<your_postgres_username>
spring.datasource.password=<your_postgres_password>
spring.datasource.driver-class-name=org.postgresql.Driver
#create tables if they don't exist
spring.jpa.hibernate.hbm2ddl.auto=create

2. Building the app

cd src/main/resources/static
npm install
./node_modules/.bin/webpack
cd -
mvn clean install

3. Running the app

mvn spring-boot:run

Automatic building and reloading (IntelliJ IDEA)

To enable this, make sure you have enabled "Make project automatically" in your compiler settings. Now type Shift+Command+A and enter "Registry" in the search box that appears. Enable "compiler.automake.allow.when.app.running".

Now every time you modify classes, html etc. you will see the changes immediately in your browser after doing a refresh. To make your browser autorefresh every time you change smth in your code, you can install livereload.

For the frontend static content, use the webpack watcher to automatically recompile es6 scripts and scss files:

cd src/main/resources/static
./node_modules/.bin/webpack --watch

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.