Compare commits

...

2 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
3 changed files with 5 additions and 6 deletions

View File

@ -3,7 +3,7 @@ import { Router } from 'express';
const router = Router();
router.get('/version', async (req, res) => {
return res.send({ version: '0.0.8' });
return res.send({ version: '0.0.9' });
});
export default router;

View File

@ -19,6 +19,6 @@ record:
LACONIC_HOSTED_CONFIG_turnkey_api_base_url: https://api.turnkey.com
LACONIC_HOSTED_CONFIG_turnkey_organization_id: 5049ae99-5bca-40b3-8317-504384d4e591
meta:
note: Added by Snowball @ Sat Jun 22 02:49:45 UTC 2024
note: Added by Snowball @ Mon Jun 24 23:51:48 UTC 2024
repository: "https://git.vdb.to/cerc-io/snowballtools-base"
repository_ref: 61e3e88a6c9d57e95441059369ee5a46f5c07601

View File

@ -13,13 +13,12 @@ export default defineConfig({
context: '/src/context',
components: '/src/components',
pages: '/src/pages',
types: '/src/types',
},
},
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(),
// ),
},
});