Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/drujensen/adventure

Example server-side rendered web-based site using Python and FastAPI.
https://github.com/drujensen/adventure

Last synced: 10 days ago
JSON representation

Example server-side rendered web-based site using Python and FastAPI.

Awesome Lists containing this project

README

        

# Adventure

Adventure is an example server-side rendered web-based site using Python's FastAPI.
It uses Mako templating and SqlAlchemy ORM for storage. The basic site builds
a CRUD service to managing your adventures i.e. a blog site.

## Installation

Setup your virtual python environment:
```
pipenv shell
```

Install the packages:
```
pipenv install
```

## Run

To launch the application:
```
uvicorn main:app --reload
```