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: 10 days ago
JSON representation

An alternative Student Portal for Baku Engineering University. React | MaterialUI 6 | Flask

Awesome Lists containing this project

README

        




## Student Information System
## Tələbə Məlumat Sistemi

### Individual Assignment for Multi Platform Programming

![lp1](https://github.com/user-attachments/assets/ebced359-ba96-4a9c-bb3d-cf77cb1345cf)

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