Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rayluo/brython-project-template
See it in action here
https://github.com/rayluo/brython-project-template
brython template
Last synced: 2 months ago
JSON representation
See it in action here
- Host: GitHub
- URL: https://github.com/rayluo/brython-project-template
- Owner: rayluo
- License: mit
- Created: 2021-03-12T16:25:03.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-19T08:36:06.000Z (8 months ago)
- Last Synced: 2024-04-19T09:39:37.639Z (8 months ago)
- Topics: brython, template
- Language: HTML
- Homepage: https://rayluo.github.io/brython-project-template/
- Size: 27.3 KB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# brython-project-template
## What is it?
This template contains the following characteristics that are likely useful
when starting a new [Brython](https://brython.info)-powered project.* The index.html embeds a loading animation to give end user a hint to be patient.
This can be helpful because the first time loading of Brython is slower.
(Note to Developer: The loading animation does *not* represent the real progress.
If your website stuck with the loading animation,
open the browser console to check for error messages.)
* Although not a Brython-relevant feature,
this template includes a github workflow to deploy your each push to Github Pages
(After the first deployment which prepares your website into the default `gh-pages` branch,
~you need a one-time effort to
[enable Github Pages](https://docs.github.com/en/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site)
for your github repo~ nowadays Github seems to automatically create a "github-pages" environment for you,
so that your website will be available to the world on `https://your_github_username.github.io/your_project_name`.)
* The index.html automatically loads latest released version of Brython from CDN.
You can easily switch to use the not-yet-released latest Brython source from github.
* The index.html references bootstrap from CDN for better layout.
* An optional browser-console simulator, useful if you are browsing from Android device.
(All these can be easily comment or uncomment from the index.html.)
* The website root directory is nested inside this project.
This setup would provide better separation
when you also creates virtual env `.venv` inside your project directory.
(Otherwise you could hit [a known issue](https://github.com/brython-dev/brython/issues/1603).)## How to use it?
You can use this repo as a template to start your own project.
1. Your options are:
* If you already have a github account, then sign in and
[use this repo as a template to start your project on github](https://github.com/rayluo/brython-project-template/generate),
* or manually clone [this project](https://github.com/rayluo/brython-project-template)
* or [download its zip package](https://github.com/rayluo/brython-project-template/archive/refs/heads/main.zip)
2. Run `python3 -m http.server` to start a web server,
and then visit `http://localhost:8000` to see it in action.
3. Once you are familiar with this project's structure,
you can modify it by changing the content between
`` and ``
in `index.html`,
and content inside `main.py`.That is all.
Again, your website will also be available to the world on
`https://your_github_username.github.io/your_project_name`
after your pushing back to github.
Appendix: Using the loading animation onlyIf you already have an existing project, and you only want to use the loading animation from this project,
you can add the loading animation by including this snippet into your own `index.html````html
update_loader_message("Loading System...")
```