A learning management system focused on instructor and student communications.
- Create classrooms and discussions catered towards your needs
- Central hub for classroom participants to discuss and ask questions outside class hours
- Encourages peer-to-peer discussion
- Track classroom activity, create reminders and announcements
- File upload support
Make sure you have installed and configured docker in your local environment. After that, you will be able to run the commands below in the root directory of this repo.
git clone https://github.com/mrodrigues95/spout.git
nx run bootstrap
nx run dev:setup:localhost
nx run dev:setup:https
nx run dev:up
NOTE: You'll also need to setup .NET User Secrets and Certs below.
Application URLs can be accessed as shown below:
api: https://spout.dev/api/graphql
web: https://spout.dev
First, ensure you have the .NET 6.0 SDK installed.
Open up a terminal and run the following commands:
cd apps/api/API
dotnet user-secrets init
dotnet user-secrets set "Kestrel:Certificates:Development:Password" "<enter_random_secret_here>"
It doesn't matter what you enter as the secret, just as long as you set them in your environment as shown above.
IMPORTANT: Take note of the secret you entered for Kestrel:Certificates:Development:Password, as you will need it when we set the dev certificates.
dotnet dev-certs https -ep $env:USERPROFILE\.aspnet\https\API.pfx -p <enter_kestrel_secret_used_above_here>
dotnet dev-certs https --trust
Update ASPNETCORE_Kestrel__Certificates__Default__Password
in docker-compose.yml to use the secret you set above.
Once the certs have been set up, your local environment will be ready to go.
shared
-> A common shared set of utility functions and hookstoolkit
-> A Storybook component library containing primitives