Branches being created should have the following format:
<story type>/<story id>/<3-4 word story description>
#Example
chore/111504508/save-the-world
| { | |
| "window.zoomLevel": 1, | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.formatOnPaste": true, | |
| "editor.wordWrap": "bounded", | |
| "editor.trimAutoWhitespace": true, | |
| "editor.fontFamily": "Fira Code", |
| version: "3" | |
| services: | |
| app: | |
| restart: always | |
| build: . | |
| container_name: wolfsbane-backend | |
| links: | |
| - postgres | |
| environment: | |
| DEV_DATABASE_URL: postgres://devuser:1234@postgres:5432/dev_db |
Steps to deploy a Node.js app to Digital Ocean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a
I will be using the root user, but would suggest creating a new user
$ for commands, that just shows it a bash script and is meant to be run in a terminal| import React, { useState, useEffect } from 'react'; | |
| import { Link, useHistory, useLocation } from "react-router-dom"; | |
| import axios from '../../services/axios'; | |
| import { message as alert } from 'antd'; | |
| import Header from '../header/header.component'; | |
| import './update-resources.css'; | |
| import Spinner from '../spinner/spinner.component'; | |
| export default function updateResource(props) { | |
| const [loading, setLoading] = useState(false); |