Gamecache is a web service that keeps track of your video game collection. You can use Gamecache to rate your games, mark them as played or unplayed and more.
This Git repository is for the backend APIs for Gamecache.
The API documentation is available in the doc/ folder.
- Node.js ^15.x
- Nginx
- Database server (MariaDB or MySQL)
-
Install the required dependencies
npm install
-
Create an
.env
file using the example located at.env-example
. -
Create a
config.json
file in theconfig/
directory using the example file,config.json.example
. -
Create the database table on mysql or mariadb, and configure the connection parameters in
.env
andconfig/config.json
-
Initialize the database structure
npx sequelize-cli db:migrate
-
(Optional) Pre-fill the database with some common manufacturers, consoles, and a small selection of games.
npx sequelize-cli db:seed:all
-
Start the backend API
node src/index.js
The server will listen on http://localhost:3000 by default.
-
Create a user account with the
/api/auth/register
endpoint. -
Assign your user account as an administrator by changing
admin
to 1 in the database tableUsers
.