XAMPP installation guide for Windows - #428
Open
viktorcsimma wants to merge 2 commits into
Open
viktorcsimma wants to merge 2 commits into
viktorcsimma wants to merge 2 commits into
Conversation
kdmnk
requested changes
Feb 15, 2024
|
|
||
| ### Windows (natively) | ||
| On Windows, probably the optimal option with respect to performance is | ||
| to simply install a web server and a database server natively on the system, |
Contributor
There was a problem hiding this comment.
This is not natively, it's based on Xampp, which is a developer tool and also does a lot of "magic" in the background. We had issues with Xampp before, which did not support the newest PHP versions. Apparently, I see that currently this is not the case, however, we should make a note here to check it before even trying to set up.
| 4. Type `nvm install lts`. This command will install NPM for you. | ||
| 5. To be able to use it, you need to add the folder containing the NPM binary to the operating system's PATH variable (so that the command prompt will find it). | ||
| - Check the installed version of Node.js with `nvm list` | ||
| - Follow [these steps](https://www.mathworks.com/matlabcentral/answers/94933-how-do-i-edit-my-system-path-in-windows). Add the path `%USERPROFILE%\AppData\Roaming\nvm\vXX.XX.X`, where `XX.XX.X` is the version printed by `nvm list`. |
Contributor
There was a problem hiding this comment.
Avoid links to random pages which might not be available/updated later. Just mention adding it to the path, everyone can google it.
| php artisan migrate:fresh --seed | ||
| ``` | ||
| 15. Finally, you can start your server! For this, type `php artisan serve`. (To stop the server, press Control-C. If you want to use the command prompt, you will need to open a new window.) | ||
| 16. Your local site can be accessed from the browser at `127.0.0.1:8000`. Log in with `example@eotvos.elte.hu` and `asdasdasd`. |
Contributor
There was a problem hiding this comment.
The credentials are coming from .env just reference that.
horcsinbalint
force-pushed
the
development
branch
2 times, most recently
from
February 15, 2025 10:13
758a095 to
86e46a2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This worked for me without mysterious errors; I think I would even recommend it to students.