File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -18,20 +18,32 @@ Once installed, confirm the installation:
1818
1919## Quick Start 💨
2020
21+ #### 1. Create a New Project
22+
2123```
2224bootstrap new myapp --type=rest --router=gin --port=8080 --db=postgres
2325```
26+ - This command scaffolds a production-ready Go project with:
27+ - Standard project structure
28+ - Database configuration
29+ - Router setup
30+ - Makefile and tooling
31+
32+ #### 2. Prepare the Project
2433
2534```
2635cd myapp && make tidy
2736```
2837
29- Make sure that the docker and docker compose is installed in your local machine
38+ #### 3. Start Required Services (Database)
3039```
3140docker compose up -d
3241```
3342
3443Before running `` make run `` make sure that you have running 'db' in docker, running with the same credentials as in .env file.
44+
45+ #### 4. Run the Application
46+
3547```
3648make run
3749```
You can’t perform that action at this time.
0 commit comments