Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update webpage due to migration to oficial Jamstackpy org #734

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 53 additions & 6 deletions src/site/generators/jamstackpy.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,66 @@
---
title: Jamstackpy
repo: Abdur-RahmaanJ/jamstack
homepage: https://github.com/Abdur-rahmaanJ/jamstack#readme
repo: jamstackpy/jamstack
homepage: https://github.com/jamstackpy/jamstack#readme
language:
- Python
license:
- Apache-2.0
templates:
- Python
description: Python-powered static site maker powering multiple realworld sites
- HTML
- Jinja
description: Create jamstack sites with the Power of Python and Flask, as simple or as complex as you like
---

Jamstack spawns an scalable, easy to extend structure with it's generate function
<div align="center">
<img alt="Jamstack logo" src="https://i.imgur.com/sXUAdYJ.png" height="217" />
</div>

Some sites using jamstackpy

![](https://img.shields.io/pypi/v/jamstack)

Also known as Jamstackpy, Jamstack offers a scalable, easy to extend and fully customizable environment to create your static websites using all the power of Python and Flask, as simple or complex as you want.

You have the opportunity to start your site from scratch or use one of our wonderful templates courtesy of html5up.

## Installation

`$ python -m pip install jamstack`


## Create basic project

`$ jamstack plain <foldername>`


## Templates

Jamstack has templates available courtesy of [html5up](https://html5up.net). For see full templates visit Jamstack repo.

The syntax is as follows:


`$ jamstack t <template> <foldername>`

Use the `--existing` flag if you want the project to be created in an existing folder.


`$ jamstack t html5up/massively myproject --existing`


By default, projects are created without the assets (stylesheets, images, etc...) to download them, you must pass the `--jamdo` option to the `static.py` file of the respective project.

## Build

To build the site run the file `static.py`.

`$ python static.py`

Your site will be generated in the **dist/** folder.

Alternatively you can use the `--server` flag if you want to start livewatch.

## Sites using jamstack

- [DeliciousPy Telegram Channel](https://deliciouspy.github.io/)
- [The Flask Community Work Group](https://flaskcwg.github.io/)
Expand Down