https://github.com/dropseed/plain-starter-bare
The bare starter kit for Plain.
https://github.com/dropseed/plain-starter-bare
plainframework python web
Last synced: 4 months ago
JSON representation
The bare starter kit for Plain.
- Host: GitHub
- URL: https://github.com/dropseed/plain-starter-bare
- Owner: dropseed
- Created: 2023-11-15T16:55:53.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2026-03-01T04:04:43.000Z (4 months ago)
- Last Synced: 2026-03-01T07:17:28.408Z (4 months ago)
- Topics: plainframework, python, web
- Language: Python
- Homepage: https://plainframework.com/start/
- Size: 211 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# plain-starter-bare
This is the bare starter kit for [Plain](https://plainframework.com/),
which includes [`plain`](https://plainframework.com/docs/plain) itself and [`plain-dev`](https://plainframework.com/docs/plain-dev) for easier development.
## Usage
Make your own copy of this repo by cloning it and starting fresh:
```bash
git clone --depth 1 https://github.com/dropseed/plain-starter-bare new-project
cd new-project
rm -rf .git
git init
```
Then, install the dependencies (note that you'll need [uv](https://docs.astral.sh/uv/getting-started/installation/) installed on your system):
```bash
./scripts/install
```
Now you can fire up the development server and open http://localhost:8000 in your browser:
```bash
uv run plain dev
```