A learning management system application where learners can submit an assignment and reviewers can claim and review each submission.
- The backend application runs by default on port 8080.
- Create an
application-dev.propertiesfile and add the information below into that new properties file. - The docker-compose.yml file is in the codecamp_backend repository.
- Once created, run the docker compose command to get the postgreSQL image. The pgadmin image is optional.
## postgresql properties
spring.datasource.url=jdbc:postgresql://localhost:5550/codecampDB
spring.datasource.username=codecamp123
spring.datasource.password=codecamp123P
spring.jpa.show-sql=true
## Hibernate Properties
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
## Hibernate ddl auto (create, create-drop, validate, update)
spring.jpa.hibernate.ddl-auto=update
Database as a Docker container:
docker exec -it codecamp_db_01 psql -U codecamp123 -d codecampDBDatabase Local:
psql -U codecamp123 -d codecampDB- To start the React.js application, run in the cli
npm run devfor development.
- Homepage
- Login
- Learner registration page
- Learner's pages
- view all (Submitted, In review, Needs work, Completed)
- Create assignment
- edit and view buttons on cards
- Request one on one (Accessible, not submitting any changes)
- Profile (Accessible, not submitting any changes)
- Register (Accessible, not submitting any changes)
- Inbox
- Calendar
- Reminders
- Settings
- Reviewer's pages
- This application is still under construction.
- Create reviewer is not yet setup on the frontend side. At the moment, curl commands or applications like postman can be used to create reviewers.