export const webUrl = '/web'; // Note: API requests are handled by the backend server export const apiUrl = 'http://localhost:8000/api/'; export const homeUrl = `${webUrl}/home`; export const loginUrl = `${webUrl}/login`; export const logoutUrl = `${webUrl}/logout`; export const user = { name: 'Ally Access', username: 'allaccess', password: 'nolimits' }; export const adminuser = { username: 'admin', password: 'inventree' };