https://github.com/zynthasius39/beusp
An alternative Student Portal for Baku Engineering University. React | MaterialUI 6 | Flask
https://github.com/zynthasius39/beusp
bun material-ui mui mui6 react reactjs typescript typescript-react
Last synced: 10 days ago
JSON representation
An alternative Student Portal for Baku Engineering University. React | MaterialUI 6 | Flask
- Host: GitHub
- URL: https://github.com/zynthasius39/beusp
- Owner: Zynthasius39
- Created: 2024-12-16T19:55:40.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-01-17T23:54:16.000Z (6 months ago)
- Last Synced: 2025-01-18T00:26:45.019Z (6 months ago)
- Topics: bun, material-ui, mui, mui6, react, reactjs, typescript, typescript-react
- Language: TypeScript
- Homepage:
- Size: 165 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
![]()
## Student Information System
## Tələbə Məlumat Sistemi### Individual Assignment for Multi Platform Programming

### I prefer the old logo. Sorry, hated the new one. Having a deep meaning doesn't mean it's a good logo.
## Getting started
- Starting a dev environment:
```bash
git clone https://github.com/Zynthasius39/beusp
cd beusp
bun install
bun run dev
```
- Set-up the proxy server:
```bash
git clone https://github.com/Zynthasius39/beusp_proxy
cd beusp_proxy
python3 -m venv .venv
#------------------------------------------------------#
source .venv/bin/activate # Linux / macOS
.venv\Scripts\activate.ps1 # Windows (Powershell)
.venv\bin\activate # Windows (CMD)
#------------------------------------------------------#
python3 -m pip install -r requirements.txt
```
- Start the proxy server (deployment):
```bash
# Linux/macOS only
uwsgi --http 0.0.0.0:8000 --master -p 4 -w main:app
```
- If you want a development server instead:
```bash
python3 src/main.py
```
- Enable Swagger:
```bash
export SWAGGER_ENABLED=true # Linux / macOS
$Env:SWAGGER_ENABLED = "true" # Windows (Powershell)
set SWAGGER_ENABLED=true # Windows (CMD)
```
- Enable Offline mode:
```bash
export TMSAPI_OFFLINE=true # Linux / macOS
$Env:TMSAPI_OFFLINE = "true" # Windows (Powershell)
set TMSAPI_OFFLINE=true # Windows (CMD)
```
- Enable Debugging:
```bash
export DEBUG=true # Linux / macOS
$Env:DEBUG = "true" # Windows (Powershell)
set DEBUG=true # Windows (CMD)
```
```diff
# Change host address for your deployment
/src/Api.ts (Line 1)
+ When offline mode is enabled, no request is being made to root server.
- You need to have the proxy server running!
```