hi everybody, recently decided i wanted to revamp one of my old projects, (Spotifive)[https://github.com/vecchiotom/SpotiFive]. This has been completely Re-Written from the ground up. it's now also much much easier to run it, thanks to the new packaged form, so that it will be shipped as an EXE file.
It's very simple:
- clone the repo
- take the fivem folder, rename it to whatever you like and put it in your server as you would a normal resource
- get a MySQL database
- run this query on it:
CREATE TABLE `accounts` (
`steam` varchar(17) NOT NULL,
`access_token` mediumtext,
`refresh_token` mediumtext,
PRIMARY KEY (`steam`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- run buildserver.bat and wait for everything to install and build
- in the server folder you'll find your EXE, and even MacOS and Linux versions, just run them and your server will be up just like that!
- make sure in the same folder you have a file named .env, with this content:
MYSQL_HOST = [your mysql ip]
MYSQL_DB = spotifive
MYSQL_USER = [your mysql user]
MYSQL_PWD = [your mysql pwd]
SPOTIFY_CLIENT_ID = 7bbab8fbcdf344e58a709071cc6d2dfa
SPOTIFY_CLIENT_SECRET = d1c985a8bb63435aae5d751fb9095e16
APP_HOST = localhost
APP_PROTOCOL = http://
WHITELIST_IP = '::1'
check "localhost" and see if it's working.