Doc : Update Readme Docs for OpenMemory environment setup (#2913)

This commit is contained in:
Akshat Jain
2025-06-05 21:52:04 +05:30
committed by GitHub
parent ecc596b11f
commit 53c91fb107
4 changed files with 117 additions and 13 deletions

View File

@@ -10,7 +10,7 @@ interface ProfileState {
}
const initialState: ProfileState = {
userId: process.env.NEXT_PUBLIC_USER_ID || 'deshraj',
userId: process.env.NEXT_PUBLIC_USER_ID || 'user',
totalMemories: 0,
totalApps: 0,
status: 'idle',
@@ -36,7 +36,7 @@ const profileSlice = createSlice({
resetProfileState: (state) => {
state.status = 'idle';
state.error = null;
state.userId = process.env.NEXT_PUBLIC_USER_ID || 'deshraj';
state.userId = process.env.NEXT_PUBLIC_USER_ID || 'user';
},
setTotalMemories: (state, action: PayloadAction<number>) => {
state.totalMemories = action.payload;