Skip to content

hammadtariq/inventory-system-nextjs

Repository files navigation

Inventory System

Need to install following for this repository:

  • Node.js version 14 or above
  • NPM or YARN
  • Docker and Docker-Compose
  • Sequelize cli
Instructions for development server

Clone this repository:

git clone https://github.com/hammadtariq/inventory-system-nextjs.git

Install sequelize-cli globally

sudo yarn global add sequelize-cli
# or
sudo npm i sequelize-cli -g

Install Docker and Docker-Compose for Potsgres Database
Get Docker

Create .env file in root directory for environment variables

.env

Write environment variables in .env file

POSTGRES_DB=databasename
POSTGRES_USER=username
POSTGRES_PASSWORD=password
TOKEN_SECRET=minimum-32-characters-long-token-secret

Setup postgres locally

brew install postgres
psql postgres # enter in psql terminal for first time
create database "databasename";
create user myuser with encrypted password 'postgres';
grant all privileges on database "databasename" to myuser;

OR

Run the following command to create postgres container

docker-compose up -d

It will create docker container for postgres and docker volume to persist the data locally

Now install project dependencies

yarn install
# or
npm install

Run migrations for first time

npm install -g sequelize-cli
sequelize db:migrate:undo:all
sequelize db:migrate
sequelize db:seed:all

Finally, start the development server:

yarn dev
# or
npm run dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.js. The page auto-updates as you edit the file.

API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.js.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

create Models from sequelize cli

sequelize model:generate --name Sale --attributes customerId:integer,totalAmount:float,soldProducts:string