https://github.com/fedemahf/ragemp-gamemode-typescript-template
RAGE Multiplayer gamemode template
https://github.com/fedemahf/ragemp-gamemode-typescript-template
gamemode ragemp typescript
Last synced: about 1 year ago
JSON representation
RAGE Multiplayer gamemode template
- Host: GitHub
- URL: https://github.com/fedemahf/ragemp-gamemode-typescript-template
- Owner: fedemahf
- Created: 2022-02-05T19:45:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-05T19:58:15.000Z (over 4 years ago)
- Last Synced: 2025-02-25T21:43:03.835Z (over 1 year ago)
- Topics: gamemode, ragemp, typescript
- Language: TypeScript
- Homepage:
- Size: 898 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RAGE Multiplayer gamemode template
This is RageMP start server template. It's using typescript (server-side and client-side), Vue.js for CEF and including simple log in/sign up system.
## Preview
- Login screen: https://i.imgur.com/8TLX5O1.jpg
- Loading screen: https://i.imgur.com/GuQMeYt.jpg
- First Spawn: https://i.imgur.com/7l4KY5T.jpg
## Install
- Set the SQL credentials in a `.env` file in the root folder. See: [.env.example](.env.example)
- Download and install dependencies: `npm install`
- Build: `npm run build`.
- Copy, move or symlink the `node_modules` folder and the folders inside `dist` into the root directory from the server.
- Run the server.
## Fork differences from the original repo
- Updated build scripts.
- Removed mail confirmation on register and login.
- Improved SQL security and fixed errors on register.
- Modified password hashing algorithm from AES-256 to PBKDF2 with SHA-256.
- Added salt in user passwords.
- Added `dotenv-webpack` plugin for database configuration outside the repository.
## See also
- [fedemahf/docker-ragemp](https://github.com/fedemahf/docker-ragemp) - Simple Docker container for RAGE Multiplayer
- [fedemahf/docker-ragemp-mysql](https://github.com/fedemahf/docker-ragemp-mysql) - Simple Docker container for RAGE Multiplayer and MySQL