kn is a system under development that aims to become a complete platform for e-commerce. Currently, the project has the authentication system, which is receiving updates, future updates will include several features for managing an online store. The project is being built with as few external packages as possible, focusing on a clean and maintainable code base.
Steps to install and configure the project:
-
Clone repo:
git clone https://github.com/seu-usuario/kn-server.git
-
Enter the project directory:
cd kn-server
-
Copy the example file
.env.example
to.env
and fill in your settings:cp .env.example .env
-
Start the database via Docker Container:
docker-compose up
Basic instructions on how to use the project after installation:
-
To start the project:
make run
-
To run the tests:
make test
-
To enter the database inside Docker container:
make pg