Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jar-b/flaskmat
Flask + Materialize = flaskmat
https://github.com/jar-b/flaskmat
Last synced: 10 days ago
JSON representation
Flask + Materialize = flaskmat
- Host: GitHub
- URL: https://github.com/jar-b/flaskmat
- Owner: jar-b
- Created: 2018-04-08T21:31:01.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-05-07T14:49:28.000Z (over 1 year ago)
- Last Synced: 2024-10-12T20:57:50.079Z (24 days ago)
- Language: Python
- Homepage:
- Size: 952 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flaskmat
Flask + Materialize = flaskmat. A web application that does nothing, because learning.
## Setup
Create and activate a virtualenv (preferably python3).
```sh
virtualenv venv
source venv/bin/activate
```Navigate to the `flaskmat` directory, then install required packages and create dummy users.
```sh
# install packages
pip install -r requirements.txt# create users
python user_mgmt.py -c
```Finally, start the server.
```sh
python runserver.py # production, port 8080 (default)
python runserver.py -d -p 8081 # debug, port 8081
```## To-do
* User authentication, login page
* Make the app do something