https://github.com/dropseed/plain-starter-app
The app starter kit for Plain.
https://github.com/dropseed/plain-starter-app
plainframework python web
Last synced: 9 months ago
JSON representation
The app starter kit for Plain.
- Host: GitHub
- URL: https://github.com/dropseed/plain-starter-app
- Owner: dropseed
- Created: 2024-06-11T20:51:01.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-08-21T01:17:26.000Z (10 months ago)
- Last Synced: 2025-08-28T18:54:41.019Z (10 months ago)
- Topics: plainframework, python, web
- Language: Python
- Homepage: https://plainframework.com/start/
- Size: 318 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# plain-starter-app
This is the app starter kit for [Plain](https://plainframework.com/),
which includes everything you need for a database-driven app with users.
## 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-app 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
```