Impresent is a Webapp to manage student presence during time of COVID, when schools can't afford to have everyone on site.
The app should be used by :
- The class representative
- The students
The workflow is the following
The class representative :
- Can create a class (promotion)
- Adds the students to his class (csv imports supported)
- Can create a day of presence for a target date
- Share the volunteering link to the class
- Waits for the students volunteer using the link
- Can add people that have not volunteered to reach the minimum of attendees, based on their last presence date
- Can export the final presence list for the day to send it to the school admin
Future in developement :
- Students can unvolunteer
- Min and max attendees for a given day can be parametered for each day
Optional :
For windows :
Clone the repo
git clone https://github.com/Ombrelin/impresent.git
Environnement variables
Configure those variables inside your terminal or your IDE.
Name | Description | Exemple Value |
---|---|---|
DATABASE_URL |
Connection string to the PostgresSQL database | postgres://user:password@host:port/database |
JWT_SECRET |
Secret used to sign JWT tokens | 3myB8HRUokgD2uFejKyev4^4 |
Install web application dependencies
cd ImPresent.Web/ClientApp
npm install
Run the app
cd ..
dotnet run
The app is ready when the following log line is printed :
Microsoft.AspNetCore.SpaServices[0] Browser application bundle generation complete.
The WebApi docs are available at the /docs
route.
git clone https://github.com/Ombrelin/impresent.git
cd ImPresent.Web
docker build -t ImPresent.Web .
docker run -d -p 8080:80 ImPresent.Web
or with docker-compose
:
impresent:
image: ombrelin/impresent:1.0
ports:
- 80:8080
container_name: impresent
environment:
- JWT_SECRET="mysecret"
- DATABASE_URL="my postgres url"
restart: unless-stopped
- .NET 5 & C#
- Tyepscript
- Angular 12
- ASP .NET Core
- Entity Framework Core
- Swagger
- PostgreSQL
- Docker
- @Ombrelin for the backend
- @PoloLacoste for the frontend
- @Grandkhan for the app icon