File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ This is a mono repo template for building full-stack applications with [Turborep
2525 - [ Bruno Setup] ( #bruno-setup )
2626 - [ CI/CD] ( #cicd )
2727 - [ Frontend] ( #frontend )
28+ - [ Creating a new release] ( #creating-a-new-release )
2829 - [ Useful Links] ( #useful-links )
2930
3031## Using this repo
5354
5455### Ports Exposed
5556
56- - Frontend: [ http://localhost:7000 ] ( http://localhost:7000 )
5757- Postgres: [ http://localhost:7001 ] ( http://localhost:7001 )
5858- Backend: [ http://localhost:7002 ] ( http://localhost:7002 )
5959- PGAdmin: [ http://localhost:7003 ] ( http://localhost:7003 )
6060- Storybook: [ http://localhost:7004 ] ( http://localhost:7004 )
61+ - Frontend: [ http://localhost:7005 ] ( http://localhost:7005 )
6162
6263### Development
6364
@@ -246,6 +247,18 @@ Create `AZURE_STORAGE_KEY` and paste the key value.
246247
247248Similarly, create ` AZURE_STORAGE_ACCOUNT ` and paste the storage account name.
248249
250+ ## Creating a new release
251+
252+ To create a new release, follow the steps below:
253+
254+ 1 . Merge all the changes to the ` main ` branch.
255+ 2 . Create a new release by going to the releases page.
256+ 3 . Click on the ` Draft a new release ` button.
257+ 4 . Add the tag version and title.
258+ 5 . Add the release notes.
259+ 6 . Click on the ` Publish release ` button.
260+ 7 . The release will trigger the CI/CD pipeline and deploy.
261+
249262## Useful Links
250263
251264Learn more about the power of Turborepo:
Original file line number Diff line number Diff line change 11/** @type {import('next').NextConfig } */
2- import path from 'path'
3- import { fileURLToPath } from 'url'
4-
5- const __filename = fileURLToPath ( import . meta. url )
6- const __dirname = path . dirname ( __filename )
7-
82const nextConfig = {
93 trailingSlash : true ,
104 output : 'export' ,
11- webpack : ( config ) => {
12- config . resolve . alias = {
13- ...config . resolve . alias ,
14- '@repo' : path . resolve ( __dirname , '../packages' ) ,
15- } ;
16- return config ;
17- }
185} ;
196
207export default nextConfig ;
Original file line number Diff line number Diff line change 33 "version" : " 1.0.0" ,
44 "private" : true ,
55 "scripts" : {
6- "dev" : " next dev -p 7000 --turbo" ,
6+ "dev" : " next dev -p 7005 --turbo" ,
77 "build" : " next build" ,
88 "start" : " next start" ,
99 "lint" : " next lint"
You can’t perform that action at this time.
0 commit comments