make local
will start docker compose and mount the appropriate directories. Sometimes it's necessary to clean out the frontend directory, make clean
is available for that.
It's necessary to create frontend/.env.development
and frontend/.env.production
. The files should contain the following:
VITE_BASE_API_URI_DEV="http://localhost:81/api"
The above contents work for development however the value should be changed for production.
Originally forked from django_svelte_jwt_auth.