W
Wasp3w ago
johne5

new install of Wasp and a template is having DB connection issue

If my newly install of Wasp and a template is having DB connection issues. should I just uninstall and reinstall? it's being hosted locally on an old computer i had laying around. I beleive i have installed docker that is spinning up postgresql. I can run wasp DB start. it appears to be running. I can run wasp start. the template is running, i can access the website. I'm not able to signup a new user. i'm not able to get to the admin page. when i try and sign up a user. it displays a "Network Error".
41 Replies
kapa.ai
kapa.ai3w ago
Hi @johne5. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- Based on the knowledge sources provided, it seems you're experiencing a common issue with database connectivity in Wasp. Before considering a complete uninstall and reinstall, there are a few steps you can try to resolve the problem: 1. Check your database connection: Make sure your database is running and accessible. The "Network Error" you're seeing when trying to sign up a user could be related to the app not being able to reach the database. 2. Verify environment variables: Ensure that your .env.server file contains the correct database connection URL. If you're using the default setup with wasp start db, the connection URL should be automatically set. 3. Run database migrations: Try running wasp db migrate-dev to ensure your database schema is up to date. This step is crucial after setting up a new project or making changes to your data model. 4. Check for port conflicts: Ensure that nothing else is running on port 5432 (the default PostgreSQL port) or the ports your app is using (typically 3000 for the client and 3001 for the server). 5. Restart the application: Sometimes, simply stopping the Wasp server (with Ctrl+C) and running wasp start again can resolve connection issues. If you're still experiencing issues after trying these steps, you might want to check the server logs for more detailed error messages. You can do this by running wasp start in one terminal window and wasp start server in another to see more verbose server output. It's worth noting that some users have reported similar issues, particularly when running Wasp on Windows or in environments like GitPod. If you're using Windows, you might want to consider using WSL2 for a smoother experience, as suggested in this guide: Guide: Windows Development with Wasp & WSL. If none of these steps resolve your issue, it might be helpful to share more details about your specific setup and any error messages you're seeing in the Wasp Discord community or by opening an issue on the Wasp GitHub repository. GitHub Issue: Realworld app returning Network Error Remember, a complete uninstall and reinstall should be a last resort, as it's often not necessary and may not resolve underlying configuration issues. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @johne5, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
johne5
johne5OP3w ago
@kapa.ai can you explain this to me in more detail, i'm new to this. how do i verify the database connection?
kapa.ai
kapa.ai3w ago
Let me check the knowledge base for you again. One moment! :books: ---------------------- Certainly! I'd be happy to explain how to verify the database connection in more detail. As a new user, it's understandable that this process might seem a bit complex at first. Let's break it down into steps: 1. Check if the database is running: If you're using the default Wasp setup with Docker, you can run:
wasp start db

wasp start db

This command should start a PostgreSQL database in a Docker container. You should see output indicating that the database is running. 2. Verify the database connection URL: Open your .env.server file in your project directory. Look for a line that starts with DATABASE_URL=. It should look something like this:
DATABASE_URL="postgresql://postgresWaspDevUser:postgresWaspDevPass@localhost:5432/your-database-name"

DATABASE_URL="postgresql://postgresWaspDevUser:postgresWaspDevPass@localhost:5432/your-database-name"

Make sure this URL matches the one provided when you ran wasp start db. 3. Use Wasp's database tools: Wasp provides a handy tool to check your database connection. Run:
wasp db studio

wasp db studio

If this command opens a web interface (usually at http://localhost:5555), it means Wasp can successfully connect to your database. 4. Check for connection errors: Run your Wasp app with wasp start and watch the console output carefully. Look for any error messages related to database connection, such as:
Error: P1001: Can't reach database server at `localhost`:`5432`

Error: P1001: Can't reach database server at `localhost`:`5432`

This error would indicate that the app can't connect to the database. 5. Use the Prisma CLI directly: Since Wasp uses Prisma under the hood, you can use Prisma commands to check the connection. In your project directory, run:
npx prisma db push

npx prisma db push

This command will attempt to sync your database schema and will fail if it can't connect to the database. If you're still having trouble, you might want to try the following: 1. Ensure Docker is running correctly on your system. 2. Check if the PostgreSQL port (usually 5432) is not being used by another application. 3. Try stopping and restarting both your database (wasp start db) and your Wasp app (wasp start). Remember, if you're using Windows, running Wasp through WSL2 (Windows Subsystem for Linux) can provide a smoother experience, as mentioned in the Guide: Windows Development with Wasp & WSL. If you're still encountering issues after trying these steps, it would be helpful to share the specific error messages you're seeing. The Wasp community on Discord or the GitHub issues page can provide more targeted assistance with those details. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @johne5, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
johne5
johne5OP3w ago
@kapa.ai step 5 is failing.
Error: Prisma schema validation - (get-config wasm) Error code: P1012 error: Environment variable not found: DATABASE_URL. --> schema.prisma:3 | 2 | provider = "postgresql" 3 | url = env("DATABASE_URL") | Validation Error Count: 1 [Context: getConfig]
kapa.ai
kapa.ai3w ago
Let me check the knowledge base for you again. One moment! :books:
MEE6
MEE63w ago
Wohooo @johne5, you just became a Waspeteer level 1!
kapa.ai
kapa.ai3w ago
---------------------- Based on the error message you're seeing, it appears that Prisma is unable to find the DATABASE_URL environment variable. This is a common issue that can occur when the database connection details are not properly set up. Let's address this step by step: 1. Check your .env.server file: Make sure you have a .env.server file in your project's root directory. This file should contain your DATABASE_URL. Open it and verify that you have a line that looks like this:
DATABASE_URL="postgresql://postgresWaspDevUser:postgresWaspDevPass@localhost:5432/your-database-name"

DATABASE_URL="postgresql://postgresWaspDevUser:postgresWaspDevPass@localhost:5432/your-database-name"

If this file doesn't exist or doesn't contain the DATABASE_URL, you'll need to create it and add the correct database URL. 2. Verify the database is running: Run wasp start db to ensure that the database is actually running. This command should start a PostgreSQL database in a Docker container and provide you with the correct DATABASE_URL. 3. Set the environment variable manually: If the above steps don't work, you can try setting the DATABASE_URL environment variable manually before running the Prisma command. In your terminal, run:
export DATABASE_URL="postgresql://postgresWaspDevUser:postgresWaspDevPass@localhost:5432/your-database-name"

export DATABASE_URL="postgresql://postgresWaspDevUser:postgresWaspDevPass@localhost:5432/your-database-name"

Replace the URL with the actual URL of your database. Then try running the Prisma command again. 4. Check Wasp's generated files: Wasp generates some files that might be relevant. Check the .wasp/out/server/.env file to see if the DATABASE_URL is correctly set there. 5. Rebuild your Wasp project: Sometimes, rebuilding the project can help. Try running:
wasp clean
wasp build

wasp clean
wasp build

Then attempt to start your app again with wasp start. If you're still encountering issues after trying these steps, it might be helpful to check the Wasp documentation on connecting to an existing database. This resource provides additional information on setting up database connections in Wasp. Remember, the exact DATABASE_URL you need depends on your specific setup. If you're using the default Wasp development database, the URL provided by wasp start db should work. If you're using a custom database, make sure the URL matches your database's configuration. If the problem persists, you might want to share more details about your setup and the steps you've taken so far in the Wasp Discord community or by opening an issue on the Wasp GitHub repository. They can provide more targeted assistance based on your specific situation. Wasp Documentation: Connecting to an existing database ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @johne5, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
johne5
johne5OP3w ago
@kapa.ai i'm still getting a network error message when trying the signup page, I did the wasp clean and wasp build. added the DATABASE_URL to the .env.server file
kapa.ai
kapa.ai3w ago
Let me check the knowledge base for you again. One moment! :books: ---------------------- I understand you're still encountering a network error when trying to use the signup page, even after adding the DATABASE_URL to the .env.server file and running wasp clean and wasp build. Let's try to troubleshoot this further: 1. Verify the database connection: Run wasp db studio to check if Wasp can connect to your database. If this command opens a web interface (usually at http://localhost:5555), it means the database connection is working. 2. Check server logs: Run wasp start server in a separate terminal window. This will show more detailed server logs, which might reveal the specific error causing the network issue. 3. Ensure the database is migrated: Run wasp db migrate-dev to make sure your database schema is up to date. 4. Check for CORS issues: If you're running the client and server on different ports or domains, you might be encountering a CORS (Cross-Origin Resource Sharing) issue. This can sometimes manifest as a network error. Make sure your CORS settings are correct in your Wasp configuration. 5. Verify environment variables: Double-check that the DATABASE_URL in your .env.server file is correct and matches the URL of your running database. 6. Restart the entire application: Sometimes, a full restart can help. Stop all Wasp processes, then run wasp start db (if you're using the default database) and wasp start again. If you're still experiencing issues, it would be helpful to share: - The exact error message you're seeing in the browser console when trying to sign up - Any relevant error messages from the server logs - The contents of your .env.server file (with sensitive information redacted) Remember, if you're using Windows, running Wasp through WSL2 can provide a smoother experience, as mentioned in the Guide: Windows Development with Wasp & WSL. If none of these steps resolve your issue, you might want to consider reaching out to the Wasp community on Discord or opening an issue on the Wasp GitHub repository for more targeted assistance. GitHub Issue: Realworld app returning Network Error This issue on GitHub discusses a similar problem and might provide additional insights or solutions. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @johne5, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
johne5
johne5OP3w ago
@kapa.ai more details on how to check the server logs
kapa.ai
kapa.ai3w ago
Let me check the knowledge base for you again. One moment! :books: ---------------------- Certainly! I'd be happy to provide more details on how to check the server logs in Wasp. Checking server logs is crucial for debugging issues like the network error you're experiencing. Here's a step-by-step guide: 1. Open a new terminal window: It's best to have a separate terminal window for server logs, so you can see them in real-time while your app is running. 2. Navigate to your project directory: Use the cd command to go to your Wasp project's root directory. 3. Run the server with verbose logging: Instead of using wasp start, which starts both the client and server, use this command to start only the server with more detailed logs:
wasp start server

wasp start server

This command will start your server and display more verbose output. 4. Watch the logs: As your server starts up, you'll see various log messages. Pay attention to any error messages or warnings. 5. Interact with your app: While keeping an eye on the server logs, try to use your app (like attempting to sign up). When you perform actions, you should see corresponding log entries in the server terminal. 6. Look for specific errors: When you encounter the network error during signup, immediately check the server logs. Look for any error messages, especially those related to database connections or authentication. 7. Use log levels: Wasp uses different log levels. Pay attention to messages marked as ERROR or WARN, as these are likely to be relevant to your issue. 8. Check for database-related logs: Since you're having issues with signup, look for any logs related to database operations or user creation. If you're still not seeing enough information, you can increase the verbosity of the logs. To do this: 1. Open your main.wasp file. 2. Find or add the app declaration. 3. Add a server property with setupFn to increase log verbosity:
app MyApp {
// ... other configurations ...
server: {
setupFn: import { serverSetup } from "@server/serverSetup.js"
}
}

app MyApp {
// ... other configurations ...
server: {
setupFn: import { serverSetup } from "@server/serverSetup.js"
}
}

4. Create a file named serverSetup.js in your src/server/ directory with the following content:
export const serverSetup = (app) => {
app.use((req, res, next) => {
console.log(`${req.method} ${req.url}`);
next();
});
}

export const serverSetup = (app) => {
app.use((req, res, next) => {
console.log(`${req.method} ${req.url}`);
next();
});
}

This will log every HTTP request to your server. Remember, when sharing logs for help, make sure to redact any sensitive information like database credentials or personal data. By following these steps, you should be able to get more detailed information about what's happening on your server when you encounter the network error during signup. This information will be invaluable for diagnosing and resolving the issue. Discord support thread: Template Signup Network Error This Discord thread discusses similar signup issues and might provide additional context for interpreting your server logs. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @johne5, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
johne5
johne5OP3w ago
@kapa.ai ok, i guess wasp is to advanced for me. anything else i can do to setup a working wasp template?
kapa.ai
kapa.ai3w ago
Let me check the knowledge base for you again. One moment! :books: ---------------------- I understand your frustration, and it's okay to feel that Wasp might be challenging at first. However, there are still a few things you can try to get a working Wasp template up and running. Let's explore some simpler options: 1. Start with a basic template: Instead of using a complex template, try starting with the most basic Wasp app. You can do this by running:
wasp new my-basic-app
cd my-basic-app
wasp start
wasp new my-basic-app
cd my-basic-app
wasp start
This will create a minimal Wasp app that should work out of the box. 2. Use the TodoApp tutorial: Wasp provides a simple TodoApp tutorial that walks you through creating a basic app step by step. This might be a good way to understand how Wasp works. You can find it here: ToDo App tutorial 3. Try the Wasp CLI commands: Sometimes, running through the basic Wasp commands can help reset things. Try these in order:
wasp clean
wasp db migrate-dev
wasp start
wasp clean
wasp db migrate-dev
wasp start
4. Check your development environment: Ensure you have all the necessary prerequisites installed correctly. This includes Node.js, npm, and Docker (for the database). 5. Consider using WSL on Windows: If you're on Windows, using WSL (Windows Subsystem for Linux) can provide a smoother experience. There's a guide available: Guide: Windows Development with Wasp & WSL 6. Join the Wasp community: The Wasp community is very helpful and welcoming to newcomers. Consider joining their Discord server where you can get real-time help: Wasp Discord Remember, it's okay to take things slow and start with the basics. Wasp is a powerful tool, but like any new technology, it takes some time to get comfortable with it. Don't hesitate to ask for help in the community if you're stuck – many developers there have been in your position and are happy to assist. If you still find Wasp too challenging after trying these steps, you might want to explore other full-stack frameworks that might be more beginner-friendly. However, I encourage you to give Wasp another try with these simpler approaches first. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @johne5, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
johne5
johne5OP3w ago
@kapa.ai how to remove or clear my current wasp project and database?
kapa.ai
kapa.ai3w ago
Let me check the knowledge base for you again. One moment! :books: ---------------------- To remove or clear your current Wasp project and database, you can follow these steps: 1. Clear the Wasp project: Run the wasp clean command in your project directory. This command removes all generated code and other cached artifacts. It's essentially the Wasp equivalent of "turn it off and on again".
wasp clean

wasp clean

CLI Reference: Project Commands mentions that this command "removes all generated code and other cached artifacts. If using SQLite, it also deletes the SQLite database." 2. Remove the database: If you're using the default PostgreSQL database that Wasp sets up with Docker, you can stop and remove the Docker container. First, stop your Wasp app if it's running, then run:
docker stop wasp-postgres
docker rm wasp-postgres

docker stop wasp-postgres
docker rm wasp-postgres

This will stop and remove the Docker container for the Wasp PostgreSQL database. 3. Delete the project directory: If you want to completely remove your Wasp project, you can simply delete the project directory. Navigate to the parent directory of your project and run:
rm -rf your-project-name

rm -rf your-project-name

Replace your-project-name with the actual name of your project directory. 4. Clear environment variables: If you've set any environment variables related to your Wasp project, you might want to unset them:
unset DATABASE_URL

unset DATABASE_URL

(Replace DATABASE_URL with any other environment variables you might have set) 5. If you want to start fresh: After clearing everything, you can create a new Wasp project using:
wasp new my-new-project

wasp new my-new-project

This will create a new Wasp project with a clean slate. Remember, these steps will remove your current project and data. Make sure you have backups of any important information before proceeding. CLI Reference: Project Commands If you're still encountering issues or have any questions about this process, don't hesitate to ask for help in the Wasp Discord community. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @johne5, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
johne5
johne5OP3w ago
@kapa.ai can we tell linux to auto run "wasp db start" when the computer boots
kapa.ai
kapa.ai3w ago
Let me check the knowledge base for you again. One moment! :books: ---------------------- Yes, it's possible to set up Linux to automatically run "wasp db start" when the computer boots. This can be achieved using systemd, which is the init system used by most modern Linux distributions. Here's a general approach to accomplish this: 1. Create a systemd service file: First, you'll need to create a service file for systemd. You can do this by creating a new file in the /etc/systemd/system/ directory. Let's call it wasp-db.service. 2. Edit the service file: Open the file with a text editor (you'll need sudo privileges) and add the following content:
[Unit]
Description=Wasp Database Service
After=network.target

[Service]
ExecStart=/path/to/wasp db start
User=your_username
WorkingDirectory=/path/to/your/wasp/project
Restart=always

[Install]
WantedBy=multi-user.target

[Unit]
Description=Wasp Database Service
After=network.target

[Service]
ExecStart=/path/to/wasp db start
User=your_username
WorkingDirectory=/path/to/your/wasp/project
Restart=always

[Install]
WantedBy=multi-user.target

Make sure to replace /path/to/wasp with the actual path to your Wasp executable, your_username with your Linux username, and /path/to/your/wasp/project with the path to your Wasp project directory. 3. Enable and start the service: After creating the service file, you need to reload systemd, enable the service to start on boot, and start it immediately:
sudo systemctl daemon-reload
sudo systemctl enable wasp-db.service
sudo systemctl start wasp-db.service

sudo systemctl daemon-reload
sudo systemctl enable wasp-db.service
sudo systemctl start wasp-db.service

This setup should make Linux automatically run "wasp db start" when the computer boots. However, it's important to note a few things: 1. This approach assumes you're using a Linux distribution that uses systemd. 2. Running database services automatically on boot might not always be the best practice, especially for development environments. It's often better to have more control over when your development database starts. 3. The Wasp documentation doesn't specifically mention this kind of setup, so you might encounter unforeseen issues. If you're using Wasp in a development environment, it might be more appropriate to start the database manually when you need it, or to create a custom script that you run when you start your development work. For more information on Wasp's database management, you can refer to the Wasp documentation on connecting to a database. Remember, if you encounter any issues with this setup, the Wasp Discord community is a great place to ask for help. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @johne5, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
johne5
johne5OP2w ago
@kapa.ai Error: spawn xdg-open ENOENT
kapa.ai
kapa.ai2w ago
Let me check the knowledge base for you again. One moment! :books: ---------------------- This error message is related to a common issue that occurs when running Wasp on certain systems, particularly those without a graphical environment or X server. Let me explain what this error means and how you can address it: The "Error: spawn xdg-open ENOENT" typically occurs when Wasp (or more specifically, Vite, which Wasp uses) tries to automatically open a browser window but can't find the xdg-open command. This command is used in Linux systems to open files or URLs with the default application. Here are a few ways to address this issue: 1. Install xdg-utils: If you're on a Linux system, you can try installing the xdg-utils package. As mentioned in one of the Discord threads:
sudo apt-get install xdg-utils

sudo apt-get install xdg-utils

Discord support thread: OpenSaas setup 'Role postgres does not exist' 2. Modify Vite configuration: You can prevent Vite from trying to open a browser automatically by modifying the Vite configuration. As suggested in another Discord thread: "You can avoid that by modifying vite config with an option that tells it not to do that" Discord support thread: Whenever I run wasp db migrate-dev on my ec2 instance (micro free tier) it causes the box to hang > Answers Part 4 3. Access the app manually: Instead of relying on automatic browser opening, you can manually open your browser and navigate to <http://localhost:3000> (or whatever port your Wasp app is running on). 4. Use a system with a graphical environment: If you're running this on a server or a system without a graphical environment (like a minimal Linux installation or a cloud instance), you might want to consider developing on a system with a full desktop environment instead. It's worth noting that this error doesn't necessarily mean your Wasp app isn't running. It's just that the automatic browser opening feature is failing. Your app might still be accessible if you manually open a browser and navigate to the correct URL. If you're still having issues after trying these solutions, you might want to provide more details about your setup (operating system, environment, etc.) in the Wasp Discord community for more specific help. GitHub Issue: wasp start explodes if file from ext/ dissapears after it listed it but before it copies it This GitHub issue discusses a similar error and might provide additional context, although it's not exactly the same problem. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @johne5, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
johne5
johne5OP2w ago
Can anyone help me that is not an AI bot?
MEE6
MEE62w ago
Wohooo @johne5, you just became a Waspeteer level 2!
johne5
johne5OP2w ago
i've reinstalled linux and followed the install guide, still have db connection issues. i'm unable to complete a user sign up well, i found a PR #2373, deploy to self-hosted. so maybe there will be some instructions soon.
genyus
genyus2w ago
@johne5 I'm not sure I'm familiar enough with Wasp to confidently answer your questions, but you can make it easier to get helpful responses by including more specific details about your problem and tag @Wasp Team to get their attention.
If my newly install of Wasp and a template is having DB connection issues
Which template are you using?
when i try and sign up a user. it displays a "Network Error".
Can you view the network requests in your browser DevTools to confirm which request(s) is failing and with which error codes? Do you see any error output in the server console when you attempt to load that
step 5 is failing.
If step 3 (wasp db studio) worked, then your database is running and the problem is more likely a communication failure between your front-end and back-end.
i've reinstalled linux
Is Linux the base OS on your system?
johne5
johne5OP2w ago
@genyus thanks, but i'm pretty much over it at this point. i'll just go back to a python web server
genyus
genyus2w ago
Sorry to hear it, but all the best with your project
miho
miho2w ago
@johne5 sorry to hear that, I saw you talking to the Kapa bot and thought you got things handled. We humans are usually better at solving things like this. If you answer @genyus questions we'll probably be able to find the root cause of your issues 🙂
johne5
johne5OP2w ago
@miho lets see if i got what you're guys are asking for. here is a screenshot of the error.
No description
johne5
johne5OP2w ago
and here is a bunch of versions and the log when i start up the apps.
miho
miho2w ago
This looks like the server is down, you need to check your server logs
miho
miho2w ago
The errors you see are locally or you are running this on some sort of a server? Where do you open the web app i.e. the URL in the browser.
johne5
johne5OP2w ago
it's hard metal server. i'm connected to it via putty bare metal i can open db studio on port 5555
miho
miho2w ago
If you open the Network tab you'll see that your client is trying to connect to localhost:3001. Is that the case?
johne5
johne5OP2w ago
the server is at 192.168.20.207. i would assume the wasp client would connect the database on localhost
miho
miho2w ago
Running wasp start is usually meant for local development, not development on your server. To get that working - you need to set some env vars in .env.server and .env.client. https://wasp-lang.dev/docs/project/env-vars#client-env-vars In .env.client you should set REACT_APP_API_URL to your server URL i.e. your server IP and 3001
Env Variables | Wasp
Environment variables are used to configure projects based on the context in which they run. This allows them to exhibit different behaviors in different environments, such as development, staging, or production.
miho
miho2w ago
i would assume the wasp client would connect the database on localhost
That's not possible, client can't connect to the DB directly. Client connects via HTTPS to the server and then the server communicates with the database. If you server is not available at localhost:3001 in the browser - then the client can't also connect to it. REACT_APP_API_URL=http://192.168.20.207:3001 should be in your .env.client in your case
miho
miho2w ago
Also, you should set the env vars in .env.server to reflect that your client and your server URLs are not localhost:3000 and localhost:3001 as Wasp expects with local development. https://wasp-lang.dev/docs/advanced/deployment/manually#environment-variables
Deploying Manually | Wasp
This document explains how to build and prepare your Wasp app for deployment.
johne5
johne5OP2w ago
well, the current is, i don't have a .env.client. i only have .env.client.example. so i'll create that now
miho
miho2w ago
yep yep, you should do that so Wasp knows how to work with your custom setup 🙂
johne5
johne5OP2w ago
reading over the doc. seeing if i'm missing anything else well, that was good progress. uses accounts are getting created in the db now
miho
miho2w ago
Good job @johne5 let us know if you get stuck again

Did you find this page helpful?