Skip to content

Latest commit

 

History

History
81 lines (58 loc) · 4.82 KB

README.md

File metadata and controls

81 lines (58 loc) · 4.82 KB

Crzgames - WebSite / Back-end

Tech




Setup

# npm
# Install Node.js and npm
# Infos : Node.js minimum v14.x for Adonis.js
npm install -g npm

# Install dependencies
npm install

Updating Dependencies

Install a global package, to update major/minor versions of available packages npm :

# npm
npm install -g npm-check-updates 

Pour voir mise à jour des packages disponible de npm, exécutez ce qui suit à la racine :

ncu

Updating Dependencies, pour mettre à jour les dépendances npm, exécutez ce qui suit à la racine :

ncu --u && npm install

Development Server

Start the development server on http://localhost:3333

node ace serve --watch

Production

Build the application for production :

node ace build --production

You must install production-only dependencies inside the build folder :

cd build
npm ci --production

Start server :

node server.js

Checkout the deployment documentation for more information.