A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
from sqlalchemy.engine import create_engine | |
from sqlalchemy.orm import sessionmaker | |
def create_engine_from_django_settings(database='default'): | |
from django.conf import settings | |
db = settings.DATABASES[database] | |
engine = db['ENGINE'].lower() | |
if 'postgresql' in engine: | |
sqlalchemy_engine = 'postgresql' |
A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
import { Component } from "React"; | |
export var Enhance = ComposedComponent => class extends Component { | |
constructor() { | |
this.state = { data: null }; | |
} | |
componentDidMount() { | |
this.setState({ data: 'Hello' }); | |
} | |
render() { |