Simple movie library - Back-end only.
- Node.js
- TypeScript
- Sequelize.js
- GraphQL
- Movies
- Movie
- Actor
- Author
Clone the repository:
git clone https://github.com/lucky-ivanius/movie-library.git
Install dependencies:
npm install
Rename .env.example
to .env
- PORT = Application port (default:4000)
- DATABASE_URL = PostgreSQL connection string
Build the application:
npm run build
Start the server:
npm start
Start the server in development mode (with nodemon):
npm run start:dev
You can click here
for GraphQL Docs.
build
: Cleans the build directory and runs the TypeScript compiler.start
: Runs thebuild
script and starts the server.start:dev
: Runs the server with nodemon for development.prettier-format
: Formats the TypeScript code using Prettier.prettier-watch
: Watches the TypeScript code and formats it using Prettier on change.lint
: Runs ESLint on the codebase.lint-and-fix
: Runs ESLint on the codebase and fixes any issues.test
: Runs tests using Jest.test:dev
: Runs tests using Jest in watch mode.prepare
: Installs Husky for Git hooks.
Lucky Ivanius (luckzivanius@gmail.com)