Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/drujensen/adventure
- Owner: drujensen
- Created: 2021-08-22T18:41:00.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-04T13:33:05.000Z (about 1 year ago)
- Last Synced: 2024-10-25T01:35:42.027Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 183 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```