Skip to content

Commit 2dcd861

Browse files
committed
Refactor README.md to include instructions for creating a new release
1 parent 30bfb1b commit 2dcd861

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff 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
@@ -53,11 +54,11 @@ yarn
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

247248
Similarly, 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

251264
Learn more about the power of Turborepo:

apps/frontend/next.config.mjs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,7 @@
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-
82
const 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

207
export default nextConfig;

apps/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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"

0 commit comments

Comments
 (0)