Skip to content

TimHi/magbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Magbox

Magbox is a website to store links you plan to read later or save for future reference. Like bookmarks but (a bit) better.

build-and-deploy-container
build and lint

Development

Run the backend:

go run main.go serve --http="localhost:9000"

Run the frontend:

npm run dev

e2e

From docker folder start backend and frontend containers, then run the playwright e2e tests. (Only tested on Windows so far):

$env:MODE="development"; docker-compose up --build

From e2e folder start the tests locally using npx playwright test or:

docker run --rm --name playwright-tests --network docker_magbox-network --env CI=true -v "${PWD}:/workspace" -w /workspace --entrypoint npx mcr.microsoft.com/playwright:v1.51.1-jammy playwright test