This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
Today's Progress: Fixed CSS, worked on canvas functionality for the app.
Thoughts: I really struggled with CSS, but, overall, I feel like I am slowly getting better at it. Canvas is still new for me, but I managed to figure out some basic functionality.
'use strict' | |
const mongoose = require('mongoose') | |
mongoose.Promise = global.Promise | |
function wait(time) { | |
return new Promise((resolve) => { | |
setTimeout(resolve, time) | |
}) |
Status | Type | Env Vars Change | Review App | Ticket |
---|---|---|---|---|
Ready/Hold | Feature/Bug/Tooling/Refactor/Hotfix | Yes/No | Link | Link |
⚠️ NOTE: use notes like this to emphasize something about the PR. This could include other PRs this PR is built on top of; new or removed environment variables; reasons for why the PR is on hold; or anything else you would like to draw attention to.
What problem are you trying to solve?
If you don't have homebrew installed - get homebrew here
Then run: brew install elasticsearch
Update the elasticsearch configuration file in /usr/local/etc/elasticsearch/elasticsearch.yml
.
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
DocumentRoot /var/www | |
ServerName docker.example.com | |
ErrorLog logs/docker.example.com_error.log | |
CustomLog logs/docker.example.com_access.log combined | |
ProxyPreserveHost On | |
ProxyRequests off | |
<Location /> |
#!/bin/bash | |
# NOTE: actually it would be nice to add something like the branch and SHA, but for the sake of demonstration I'm just using this file to feed Wakatime | |
# these variables are not used, but they might be useful; for someone else to play around | |
MESSAGE=$1 | |
SHA=$(git rev-parse HEAD) | |
BRANCH=$(git symbolic-ref --short HEAD) | |
# give it a name |