Getting Started
1. Using node
# Install the application dependencies
npm install
# Build the applicaion
npm run build
# Start the server
npm run start
2. Using docker
# Build the docker image
docker image build -t journo .
# Run the docker container
docker run -p 3000:3000 journo
# Install the application dependencies
npm install
# Build the applicaion
npm run build
# Start the server
npm run start
# Build the docker image
docker image build -t journo .
# Run the docker container
docker run -p 3000:3000 journo
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying pages/index.tsx
.