curl --request POST \
--url http://localhost:3000/login \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'key=user1&password=password' \
--cookie-jar /tmp/cookie
curl --request GET \
--url http://localhost:3000/profile \
--cookie /tmp/cookie
Please refer to the API documentation by clicking here
To run inside a Docker container:
docker build -t movify-backend .
Run the image as a daemon, mapping 3000 to 8080 port of the host.
docker run -d \
--name MovifyBackend \
--restart=always \
--publish 8080:3000 \
movify-backend
Mirror Gitlab repository for CI/CD: https://gitlab.com/bymafmaf/MovifyBackend