README: update disclaimer on current status for production use

pull/44/head
Max Leiter 4 years ago
parent b84d982be2
commit 594e903fe4
No known key found for this signature in database
GPG Key ID: A3512F2F2F17EBDA

@ -15,7 +15,7 @@ You can run `yarn dev` in either / both folders to start the server and client w
### Production
**Note: Drift is not yet ready for production usage and should not be used seriously until the database has been setup, which I'll get to when the server API is semi stable.**
**Note: Drift is not yet ready for production usage and should not be used too seriously. I'll make every effort to not lose data, but I won't make any guarantees until the project is further along.**
`yarn build` in both `client/` and `server/` will produce production code for the client and server respectively. The client and server each also have Dockerfiles which you can use with a docker-compose (an example compose will be provided in the near future).

@ -26,7 +26,7 @@ const Auth = ({ page }: { page: "signup" | "signin" }) => {
})
if (resp.ok) {
const res = await resp.json()
setRequiresServerPassword(res)
setRequiresServerPassword(res.requiresPasscode)
} else {
setErrorMsg("Something went wrong.")
}

Loading…
Cancel
Save