Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Small steps tho, small steps
The Beat Revival developers hit a roadblock a while ago and until they solve it, these two achievements will remain unobtainable.
Now to see if I can do all the achievements... I know I did a beat L.E when servers were up, but I dont think I can do a user time trial atm lol
error message suggests incorrect credentials for PostgreSQL user "postgres".
First make sure that the .env file is inside "pamplona-future-main" (right next to the 'prisma' and 'src' directories and other files like README.md)
If it is, you can open it and check it's content. If you set up everything exactly as i did in the guide, it should be:
DATABASE_URL=postgresql://postgres:password123@localhost:5432/postgres
If the file exists and has the same content, then maybe you used different password during PostgreSQL installation?
In the guide it's "password123", if you used different one, you can simply change it in the .env file.
Lastly, if none of above helped, you may try to uninstall PostgreSQL and install it again.
It should once again ask for a password, maybe you made a typo there?
Hope this will be helpful :)
Was following your guide (very well explained btw, thanks) however I get the following error when I try to run the command "npm run resetdb":
Error: P1000: Authentication failed against database server, the provided database credentials for `postgres` are not valid.
Please make sure to provide valid database credentials for the database server at the configured address.
Any help would be appreciated. Don't think this is an error I've seen in comments but I may be blind.
Thank you so much, man, I've been trying this the whole day<3<3
There were some updates in pamplona-future repo and now it's required to use `npm run dev` instead of `npm start`.
I did update the text guide, but i left the old screenshot, so i guess this might be confusing. :S
When i have some spare time i will install and configure it myself again, just to update that one screenshot. :)
I still can't make it tho. Dunno why, but once I npm start it gives me 6 errors, something related to "gateways and strings", and 'cause I'm not good at this code stuff I think I'll pass and wait until a new and easy way appears.
Anyways thx so much for the guide and the help to everyone<3
Are you sure that you have installed Node.js?
Command `npm` is a part of Node.js installation, so you could verify that.
If Node.js is installed, then possibly your PATH environment variable do not contain it's directory.
You can check it by running `echo $env:path` and looking for Node.js installation path (you can also use `echo $env:path | findstr /i node` which will filter PATH variable looking for 'node' string).
If the path is missing, then you can add it - go to Windows System Settings -> About -> Advanced system settings -> Advanced (tab) -> Environment Variables (bottom of the window)
In "User variables for ..." look for "Path", highlight and click "Edit"
Then click "New" and write path to Node.js directory (eg. C:\Program Files\nodejs\)
or click "New" and then "Browse.." to choose the directory manually.
Reopen PowerShell and check if it works now - it should. :)
Any idea someone?pls