You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure to fill in the required values for each variable. The `AUTH_SECRET` should be a random string, and `AUTH_URL` should be set to `http://localhost:3000` for local development. The `XATA_BRANCH` should typically be set to "main" unless you're using a different branch.
97
+
Make sure to fill in the required values for each variable. The `AUTH_SECRET` should be a random string, and `AUTH_URL` should be set to `http://localhost:3000` for local development. The `XATA_BRANCH` should typically be set to "main" unless you're using a different branch.
76
98
77
-
Remember to remove env variables that are optional and you are empty, they will cause validation errors
99
+
Remember to remove env variables that are optional and you are empty, they will cause validation errors
78
100
79
101
## Running the Project
80
102
81
103
After setting up the environment variables, you can start the development server:
104
+
82
105
```sh
83
106
pnpm dev
84
107
```
@@ -88,14 +111,18 @@ The application should now be running at `http://localhost:3000`.
88
111
## Making Contributions
89
112
90
113
1. Create a new branch for your feature or bug fix:
114
+
91
115
```sh
92
116
git checkout -b feature/your-feature-name
93
117
```
118
+
94
119
2. Make your changes and commit them with a descriptive commit message.
95
120
3. Push your changes to your fork:
121
+
96
122
```sh
97
123
git push origin feature/your-feature-name
98
124
```
125
+
99
126
4. Create a pull request from your fork to the main repository.
100
127
101
128
Please ensure your code follows the project's coding standards and includes appropriate tests if applicable.
0 commit comments