Potential-Enigma

Development with Docker

Install & start docker container(s) :

make install

Need help with make ?

make help

Database table creation

Starting containers will automatically create tables.

JS Project

# install dependencies
yarn

# development server
yarn start

# build for production
yarn build

Using Eslint & Prettier

With VSCode, put this config in .vscode/settings.json

{
  "eslint.validate": [
    {
      "language": "javascript",
      "autoFix": true
    }
  ],
  "eslint.autoFixOnSave": true,
  "editor.formatOnSave": true
}