Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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!
```