https://github.com/webtech-network/app-grader-builder
Frontend application for the Grader Builder service.
https://github.com/webtech-network/app-grader-builder
Last synced: 2 months ago
JSON representation
Frontend application for the Grader Builder service.
- Host: GitHub
- URL: https://github.com/webtech-network/app-grader-builder
- Owner: webtech-network
- Created: 2025-10-16T12:55:18.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2026-02-13T20:07:40.000Z (4 months ago)
- Last Synced: 2026-02-14T03:27:42.195Z (4 months ago)
- Language: TypeScript
- Homepage: https://grader-builder.vercel.app
- Size: 596 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# app-grader-builder
Frontend application for the Grader Builder service.
## Environment Configuration
This application uses environment variables to configure backend API URLs.
Create a `.env` file in the root directory (a `.env.example` is provided as template):
```bash
REACT_APP_API_BASE_URL=http://localhost:8000
REACT_APP_CONFIG_API_URL=http://localhost:8001
```
These variables configure:
- `REACT_APP_API_BASE_URL`: The templates API endpoint (default: http://localhost:8000)
- `REACT_APP_CONFIG_API_URL`: The configuration generator API endpoint (default: http://localhost:8001)
## Running the application
## **IMPORTANT!!!**
- You need to have autograder core running in order to properly fetch the templates API. We will later work on a script that automates this requirement
install dependencies
```bash
npm i
```
start the dev server
```bash
npm start
```
Head to `http://localhost:3000` in your browser and have fun :)
> If you're a dev here, make sure to follow good commit and push practices. Don't be like Arthur Drumond!!