All Projects → app-generator → bulmaplay

app-generator / bulmaplay

Licence: other
Bulma CSS- BulmaPlay | AppSeed

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to bulmaplay

django-material-kit
Django Boilerplate - Material Kit Design | AppSeed
Stars: ✭ 36 (-50%)
Mutual labels:  appseed
flask-atlantis-dark
Atlantis Lite - Flask (Dark Version) | AppSeed
Stars: ✭ 116 (+61.11%)
Mutual labels:  appseed
hubnav
A Chrome extension for navigating github.com via keyboard shortcuts. Quickly access issues for multiple repos, as well as your org's pages.
Stars: ✭ 96 (+33.33%)
Mutual labels:  bulma-css
vue-portfolio
💼 Portfolio built with Vue and Bulma
Stars: ✭ 13 (-81.94%)
Mutual labels:  bulma-css
django-datatables-sample
Django - Datatables Sample | AppSeed
Stars: ✭ 47 (-34.72%)
Mutual labels:  appseed
admin-two-vue-bulma-dashboard
Free Vue.js Bulma Buefy Admin Dashboard Template. Vite & Vue CLI supported
Stars: ✭ 68 (-5.56%)
Mutual labels:  bulma-css
laravel-react-purity-dashboard
React Laravel - Purity Dashboard (Open-Source) | AppSeed
Stars: ✭ 30 (-58.33%)
Mutual labels:  appseed
bulma-styled-components
An implementation of the Bulma css Library for React using Styled Compenents
Stars: ✭ 53 (-26.39%)
Mutual labels:  bulma-css
black-dashboard-django
Black Dashboard - Open-source Django Template | Creative-Tim
Stars: ✭ 61 (-15.28%)
Mutual labels:  appseed
fullstack-flask-react-material-design
Flask React - Built with Automation Tools | AppSeed App Generator
Stars: ✭ 27 (-62.5%)
Mutual labels:  appseed
html-parser
Html Parser - Html to Pug, Jinja2, Blade Converter | AppSeed
Stars: ✭ 40 (-44.44%)
Mutual labels:  appseed
tailwind-css-components
Tailwind CSS Components - Free and Open-Source Tailwind Components | AppSeed
Stars: ✭ 56 (-22.22%)
Mutual labels:  appseed
instacop
InstaCop — Enhanced shopping experience for the adidas.com online store 🦓
Stars: ✭ 68 (-5.56%)
Mutual labels:  bulma-css
design-system
The Baloise Design System consists of reusable components and a clearly defined visual style, that can be assembled together to build any number of applications.
Stars: ✭ 40 (-44.44%)
Mutual labels:  bulma-css
capsule
A Hugo theme based on the CSS-only Bulma framework.
Stars: ✭ 20 (-72.22%)
Mutual labels:  bulma-css
material-dashboard-django
Material Dashboard - Django Template | Creative-Tim
Stars: ✭ 52 (-27.78%)
Mutual labels:  appseed
django-now-ui-dashboard
Django Dashboard - Now UI Design | AppSeed
Stars: ✭ 15 (-79.17%)
Mutual labels:  appseed
material-kit-react
React Material Kit - Built with Automation Tools | AppSeed App Generator
Stars: ✭ 18 (-75%)
Mutual labels:  appseed
datatables-bulma
DataTables styling for the Bulma CSS framework
Stars: ✭ 80 (+11.11%)
Mutual labels:  bulma-css
flask-dashboard-modular-admin
Flask Dashboard - Modular Admin Design | AppSeed
Stars: ✭ 53 (-26.39%)
Mutual labels:  appseed

Jinja Template BulmaPlay

Seed project coded in Flask/Jinja on top of Bulma Fresh (free version) - Features:


Features:

  • UI Kit: Bulma Fresh (Free Version) by CssNinja
  • Render Engine: Flask / Jinja2
  • Deployment scripts: Docker, Gunicorn/Nginx, HEROKU
  • Support via Github (issues tracker) and Discord.

Links


Jinja Template - Starter provided by AppSeed.


Build from sources

$ # Clone the sources
$ git clone https://github.com/app-generator/bulmaplay.git
$ cd bulmaplay
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv env
$ # .\env\Scripts\activate
$
$ # Install requirements
$ pip3 install -r requirements.txt
$
$ # Set the FLASK_APP environment variable
$ (Unix/Mac) export FLASK_APP=run.py
$ (Windows) set FLASK_APP=run.py
$ (Powershell) $env:FLASK_APP = ".\run.py"
$
$ # Set up the DEBUG environment
$ # (Unix/Mac) export FLASK_ENV=development
$ # (Windows) set FLASK_ENV=development
$ # (Powershell) $env:FLASK_ENV = "development"
$
$ # Run the Jinja Template
$ # --host=0.0.0.0 - expose the app on all network interfaces (default 127.0.0.1)
$ # --port=5000    - specify the app port (default 5000)  
$ flask run --host=0.0.0.0 --port=5000
$
$ # Access the UI in browser: http://127.0.0.1:5000/

Code-base structure

The project has a simple structure, represented as bellow:

< PROJECT ROOT >
   |
   |-- app/__init__.py
   |-- app/
   |    |-- static/
   |    |    |-- <css, JS, images>         # CSS files, Javascripts files
   |    |
   |    |-- templates/
   |    |    |
   |    |    |-- includes/                 # Page chunks, components
   |    |    |    |
   |    |    |    |-- navigation.html      # Top bar
   |    |    |    |-- sidebar.html         # Left sidebar
   |    |    |    |-- scripts.html         # JS scripts common to all pages
   |    |    |    |-- footer.html          # The common footer
   |    |    |
   |    |    |-- layouts/                  # App Layouts (the master pages)
   |    |    |    |
   |    |    |    |-- base.html            # Used by common pages like index, UI
   |    |    |    |-- base-fullscreen.html # Used by auth pages (login, register)
   |    |    |
   |    |  index.html                      # The default page
   |    |  login.html                      # Auth Login Page
   |    |  register.html                   # Auth Registration Page
   |    |  page-404.html                   # Error 404 page (page not found)
   |    |  page-500.html                   # Error 500 page (server error)
   |    |    *.html                        # All other pages provided by the UI Kit
   |
   |-- requirements.txt
   |
   |-- run.py
   |
   |-- ************************************************************************

Deployment

The project comes with a basic configuration for Docker, HEROKU, Gunicorn, and Waitress.


Docker execution


The steps to start the template using Docker:

Get the code

$ git clone https://github.com/app-generator/bulmaplay.git
$ cd bulmaplay

Start the app in Docker

$ sudo docker-compose pull && sudo docker-compose build && sudo docker-compose up -d

Visit http://localhost:5005 in your browser. The app should be up & running.


Heroku


Steps to deploy on Heroku

  • Create a FREE account on Heroku platform
  • Install the Heroku CLI that match your OS: Mac, Unix or Windows
  • Open a terminal window and authenticate via heroku login command
  • Clone the sources and push the project for LIVE deployment
$ # Clone the source code:
$ git clone https://github.com/app-generator/bulmaplay.git
$ cd bulmaplay
$
$ # Check Heroku CLI is installed
$ heroku -v
heroku/7.25.0 win32-x64 node-v12.13.0 # <-- All good
$
$ # Check Heroku CLI is installed
$ heroku login
$ # this commaond will open a browser window - click the login button (in browser)
$
$ # Create the Heroku project
$ heroku create
$
$ # Trigger the LIVE deploy
$ git push heroku master
$
$ # Open the LIVE app in browser
$ heroku open

Gunicorn


Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX.

Install using pip

$ pip install gunicorn

Start the app using gunicorn binary

$ gunicorn --bind 0.0.0.0:8001 run:app
Serving on http://localhost:8001

Visit http://localhost:8001 in your browser. The app should be up & running.


Waitress


Waitress (Gunicorn equivalent for Windows) is meant to be a production-quality pure-Python WSGI server with very acceptable performance. It has no dependencies except ones that live in the Python standard library.

Install using pip

$ pip install waitress

Start the app using waitress-serve

$ waitress-serve --port=8001 run:app
Serving on http://localhost:8001

Visit http://localhost:8001 in your browser. The app should be up & running.


Credits & Links



Jinja Template BulmaPlay - Provided by AppSeed App Generator.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].