Skip to content

Commit

Permalink
Merge pull request #214 from michal367/develop
Browse files Browse the repository at this point in the history
Second milestone
  • Loading branch information
michal367 authored May 12, 2021
2 parents 7e0899c + bdb2b2a commit 98e780d
Show file tree
Hide file tree
Showing 75 changed files with 5,257 additions and 711 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,6 @@ temp/

# Deno settings
server/.vscode/

# keys
*.pem
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: deno run --allow-read --allow-net=:${PORT} server/server.ts --port=${PORT}
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,26 @@ The main goals of this app is to provide a way to:

- encourage students to actively participate by asking simple questions
- gather students' reactions during on-line lecture, which gives the lecturers feedback they lack


## Running the app

This app uses [npm](https://nodejs.org/) and [deno](https://deno.land/).

To run app first you need to install dependencies:
```bash
npm install
```
Next you have to build sites:
```bash
npm run build
```
And then start deno server:
```bash
npm run deno
```

If you want to run app in developent mode instead of two commands above run:
```bash
npm run launch
```
Loading

0 comments on commit 98e780d

Please sign in to comment.