An open API service indexing awesome lists of open source software.

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.

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
```