README: update disclaimer on current status for production use

This commit is contained in:
Max Leiter 2022-03-20 23:30:50 -07:00
parent b84d982be2
commit 594e903fe4
No known key found for this signature in database
GPG key ID: A3512F2F2F17EBDA
2 changed files with 2 additions and 2 deletions

View file

@ -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).

View file

@ -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.")
}