Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1021 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 1021 Bytes

VSCode setup

Requirements

This project is setup to run in a DevContainer. Ensure requirements to run in a DevContainer:

  1. Docker installed
  2. Visual Studio Code (VS Code) installed
  3. VS Code Extension Remote Container installed

Start DevContainer

  • Before starting the devcontainer make sure DATABASE_URL is deleted, commented or the host is set to database (instead of localhost) in .env file.

Click on the icon similar to "><" in the bottom left corner and select Remote-Containers: Reopen in Container. If any changes were made to files in .devcontainer folder the Container should be rebuilt (Remote-Containers: Rebuild Container)

Quickstart

  1. Run migrations:

    make sihl migrate
    
  2. Run the development server:

    make dev
    
  3. Open Browser on localhost:3000

Back to main README