I use the Oceanic Next
theme with the dimmed bg option. Link →
For each of the extensions, read the overview page in order to learn how to use it.
I use the Oceanic Next
theme with the dimmed bg option. Link →
For each of the extensions, read the overview page in order to learn how to use it.
<!-- | |
Go through the index file you copied into your theme. | |
Find the static content that matches each item listed below, then replace it with the provided snippet. | |
For example, find where it says "Blog Title" then replace it with <?php wp_title(''); ?> | |
Or, if it says "Instruction", follow the instruction provided instead | |
--> | |
Blog Title | |
<?php wp_title(''); ?> |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
#!/bin/bash | |
cat /path/to/public_key | ssh root@yourdokkuinstance "sudo sshcommand acl-add dokku [description]" |
- index.js | |
- package.json | |
- public/js/main.js | |
- public/index.html | |
- css/bootstrap-responsive.min.css | |
- css/flatly-bootstrap.min.css |
variables: | |
DOKKU_HOST: 'dokku.host.es' | |
IP_DOKKU_HOST: '1.2.3.4' | |
SSH_DOKKU_PORT: '22' | |
PROJECT_NAME: 'project_name' | |
stages: | |
- deploy_to_dokku | |
deploy_dokku: |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
#!/usr/bin/env bash | |
ENV_PATH="$(dirname $(dirname $(which pip)))" | |
SYSTEM_VIRTUALENV="$(which -a virtualenv|tail -1)" | |
echo "Ensure the root of current virtualenv:" | |
echo " $ENV_PATH" | |
read -p "‼️ Say no if you are not sure (y/N) " -n 1 -r | |
echo | |
if [[ $REPLY =~ ^[Yy]$ ]]; then | |
echo "♻️ Removing old symbolic links......" |
This is a quick tutorial explaining how to get a static website hosted on Heroku. Why do this? Heroku hosts apps on the internet, not static websites. To get it to run your static portfolio, personal blog, etc., you need to trick Heroku into thinking your website is a PHP app. This 6-step tutorial will teach you how.