forked from retoor/snek
Set up the Python project skeleton including pyproject.toml, setup.cfg, Makefile, .gitignore, and README. Implement the core snek application with aiohttp-based web server, model validation framework, and a registration form with username, email, and password fields.
14 lines
173 B
Makefile
14 lines
173 B
Makefile
PYTHON=./.venv/bin/python
|
|
PIP=./.venv/bin/pip
|
|
APP=./venv/bin/snek.serve
|
|
PORT = 8081
|
|
|
|
|
|
install:
|
|
python3 -m venv .venv
|
|
$(PIP) install -e .
|
|
|
|
run:
|
|
$(APP) --port=$(PORT)
|
|
|