Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stackotter/norm-bench
An alternative to WordBench with better crossword setting!
https://github.com/stackotter/norm-bench
epic nmss normalised words
Last synced: 20 days ago
JSON representation
An alternative to WordBench with better crossword setting!
- Host: GitHub
- URL: https://github.com/stackotter/norm-bench
- Owner: stackotter
- Created: 2022-01-19T05:56:57.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-03T12:15:38.000Z (almost 3 years ago)
- Last Synced: 2024-10-04T22:06:48.577Z (about 1 month ago)
- Topics: epic, nmss, normalised, words
- Language: Python
- Homepage: https://normbench.stackotter.dev
- Size: 578 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NormBench
An alternative to WordBench with better crossword setting! Made on one of the rest days during NMSS
## Architecture
- Frontend: Svelte
- Backend: Python, Flask, SocketIO## Frontend
To run the frontend, make sure to set the following three variables to the correct values (see below for some example values).
```
VITE_BACKEND_HOST=127.0.0.1
VITE_BACKEND_PORT=8000
VITE_IS_HTTPS=0
```Run the front end using the following command:
```sh
npm run dev
```# Backend
```sh
# Run as http
flask run --host=$VITE_BACKEND_HOST --port=$VITE_BACKEND_PORT# Run as https
flask run --host=$VITE_BACKEND_HOST --port=$VITE_BACKEND_PORT --cert=/path/to/certfile.cert --key=/path/to/keyfile.cert
```