Skip to content

This is a simple portfolio project using Next.js and Bootstrap CSS

Notifications You must be signed in to change notification settings

thomaskanzig/portfolio-nextjs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Portfolio Next.js & Bootstrap

This is a simple portfolio project using Next.js and Bootstrap.

Note: This project is still under development and an official release will be coming soon. 🚧✨

Screenshot of the home page

Requirements

Running applications:

Start the Docker containers:

docker-compose up -d

On this stage you should access already the application on the browser by the following URL: http://localhost:3000

Stop the Docker containers:

docker-compose down

Execute npm commands into the node container:

docker exec -it node-container bash

It will open the bash terminal of the php container, and you can run any kind fo commands you want.

root@370c11910f26:/app# 
root@370c11910f26:/app# node -v

Output:

v22.9.0

To finish or exit the docker exec session, you can simply type exit in the terminal where the session is running.

root@370c11910f26:/app# exit

Check status of all containers:

docker ps

Or one specific container name:

docker ps --filter "name=node-container"

Environment Variables

Create a .env.local file in the root project (portfolio/) with the following content:

NEXT_PUBLIC_API_URL=http://localhost:3000