Compare commits

..
Author SHA1 Message Date
Vivian Phung 35b01c5749 fix: temp frontend deployment bug 2024-06-25 00:58:13 -04:00
Vivian Phung 49de738220 v.0.0.9 staging 2024-06-24 19:52:25 -04:00
6 changed files with 7 additions and 10 deletions
-1
View File
@@ -21,4 +21,3 @@ yarn build --ignore frontend
### Environment variables, running the development server, and deployment
Follow the instructions in the README.md files of the [backend](packages/backend/README.md) and [frontend](packages/frontend/README.md) packages.
+1 -1
View File
@@ -44,7 +44,7 @@ yarn start
## Deployment
Clone the [deployer repository](https://git.vdb.to/cerc-io/snowballtools-base-api-deployments):
Clone the deployer repository:
```zsh
git clone git@git.vdb.to:cerc-io/snowballtools-base-api-deployments.git
+1 -3
View File
@@ -44,9 +44,7 @@ yarn dev
## Deployment
From the root of the project,
- check if the [gittea repository mirror](https://git.vdb.to/cerc-io/snowballtools-base) is up to date
From the root of the project, run:
### Staging
+2 -1
View File
@@ -16,7 +16,8 @@ import { Toaster } from 'components/shared/Toast';
import { LogErrorBoundary } from 'utils/log-error';
import { baseUrl } from 'utils/constants';
console.log(`v-0.0.9`);
// @ts-ignore
console.log(`v-${__VERSION__}`);
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement,
@@ -26,7 +26,6 @@ const Projects = () => {
return (
<section className="px-4 md:px-6 py-6 flex flex-col gap-6">
{/* Header */}
<div className="flex items-center">
<div className="grow">
<div className="flex gap-4 items-center">
+3 -3
View File
@@ -17,8 +17,8 @@ export default defineConfig({
},
define: {
'process.env': {},
__VERSION__: JSON.stringify(
(await promisify(exec)('git rev-parse --short HEAD')).stdout.trim(),
),
// __VERSION__: JSON.stringify(
// (await promisify(exec)('git rev-parse --short HEAD')).stdout.trim(),
// ),
},
});