You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Gonne 558ea38a02
Sprechstunden müssen in der vorlesungsfreien Zeit nicht eingetragen werden.
2 weeks ago
config Validiere Mailaddressen in der Konfiguration 4 months ago
controllers Füge Security-Header hinzu 3 months ago
models Konvertiere RequestActions zu IOTA 3 months ago
repositories Konvertiere RequestActions zu IOTA 3 months ago
sqldb Verbessere Dokumentation 5 months ago
static Aktualisiere Bootstap und MySQL-Paket 3 months ago
templating Sprechstunden müssen in der vorlesungsfreien Zeit nicht eingetragen werden. 2 weeks ago
.gitignore Benenne Packages konsistent und füge go.mod und go.sum hinzu. 6 months ago
README.md add some documentation for getting started with development 6 months ago
dummydatasqlite.sql Sortiere Veranstaltungen 1 month ago
go.mod Aktualisiere Bootstap und MySQL-Paket 3 months ago
go.sum Aktualisiere Bootstap und MySQL-Paket 3 months ago
main.go Logge nach stderr 6 months ago
officeHoursMysql.sql Zeige Raumnamen an 6 months ago
officeHoursSQLite.sql Zeige Raumnamen an 6 months ago

README.md

Sprechstundentool der FS Mathematik TU Darmstadt

Developing

Make sure you have Go installed, e.g. by executing go version.

Initialize the database. For developing, we recommend using sqlite:

user@host:path/to/repo$ sqlite3 officeHours.db -init sqlite.sql
sqlite> .read dummydatasqlite.sql

Now start the development webserver, note that you need to manually restart it to code changes take effect.

go run .

The website is exposed at http://localhost:8080, this (and some other options, e.g. where mails are sent to) can be adjusted in config/config.json.