Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 2 hours 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 (25 days ago)
- Default Branch: main
- Last Pushed: 2025-01-10T00:35:43.000Z (1 day ago)
- Last Synced: 2025-01-10T01:26:38.643Z (about 23 hours ago)
- Topics: bun, material-ui, mui, mui6, react, reactjs, typescript, typescript-react
- Language: TypeScript
- Homepage:
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Individual Assignment for Multi Platform Programming
### Student Information System | Tələbə Məlumat Sistemi
![image1](https://github.com/user-attachments/assets/6701b74b-d888-4620-8217-a3a4c1a77bca)
![image2](https://github.com/user-attachments/assets/580adcbd-659b-44f8-9207-d8c5e2de11a1)## 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)
```
```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!
```