refactor: change assets handling to vite-rs

chore: update dev environment

wip: handle vite tooling manually
This commit is contained in:
Alexander Navarro 2025-04-21 20:14:07 -04:00
parent 14a4d9b2b3
commit af709f2e72
26 changed files with 406 additions and 389 deletions

10
.idea/QuickJinja_project.xml generated Normal file
View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="de.achimonline.quickjinja.settings.QuickJinjaProjectSettingsState">
<option name="settings">
<QuickJinjaProjectSettings>
<option name="templateFilePath" value="$PROJECT_DIR$/frontend/templates/base.html" />
</QuickJinjaProjectSettings>
</option>
</component>
</project>

8
.idea/dictionaries/project.xml generated Normal file
View file

@ -0,0 +1,8 @@
<component name="ProjectDictionaryState">
<dictionary name="project">
<words>
<w>endblock</w>
<w>htmx</w>
</words>
</dictionary>
</component>

View file

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="HtmlUnknownTarget" enabled="true" level="TEXT ATTRIBUTES" enabled_by_default="true" editorAttributes="RUNTIME_ERROR" />
</profile>
</component>

8
.idea/runConfigurations/Dev.xml generated Normal file
View file

@ -0,0 +1,8 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Dev" type="CompoundRunConfigurationType">
<toRun name="Run compendium" targetId="RsBuildProfile:dev" type="CargoCommandRunConfiguration" />
<toRun name="dev-database-pg" type="docker-deploy" />
<toRun name="Vite Dev Server" type="js.build_tools.npm" />
<method v="2" />
</configuration>
</component>

View file

@ -0,0 +1,25 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Run with vite" type="CargoCommandRunConfiguration" factoryName="Cargo Command">
<option name="buildProfileId" value="dev" />
<option name="command" value="run --package compendium --bin compendium --features vite" />
<option name="workingDirectory" value="file://$PROJECT_DIR$" />
<envs>
<env name="CPD_DB_HOST" value="localhost" />
<env name="CPD_DB_NAME" value="compendium" />
<env name="CPD_DB_PASSWORD" value="&quot;1234&quot;" />
<env name="CPD_DB_USER" value="postgres" />
</envs>
<option name="emulateTerminal" value="true" />
<option name="channel" value="DEFAULT" />
<option name="requiredFeatures" value="true" />
<option name="allFeatures" value="false" />
<option name="withSudo" value="false" />
<option name="buildTarget" value="REMOTE" />
<option name="backtrace" value="SHORT" />
<option name="isRedirectInput" value="false" />
<option name="redirectInputPath" value="" />
<method v="2">
<option name="CARGO.BUILD_TASK_PROVIDER" enabled="true" />
</method>
</configuration>
</component>

View file

@ -0,0 +1,16 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Vite Dev Server" type="js.build_tools.npm">
<package-json value="$PROJECT_DIR$/package.json" />
<command value="run" />
<scripts>
<script value="dev" />
</scripts>
<node-interpreter value="$USER_HOME$/.bun/bin/bun" />
<package-manager value="$USER_HOME$/.bun/bin/bun" />
<envs />
<EXTENSION ID="com.intellij.lang.javascript.buildTools.npm.rc.StartBrowserRunConfigurationExtension">
<browser start="true" url="http://localhost:3000" />
</EXTENSION>
<method v="2" />
</configuration>
</component>

View file

@ -0,0 +1,37 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="dev-database-pg" type="docker-deploy" factoryName="docker-image" activateToolWindowBeforeRun="false" server-name="Podman">
<deployment type="docker-image">
<settings>
<option name="imageTag" value="docker.io/library/postgres:latest" />
<option name="containerName" value="dev-database-pg" />
<option name="envVars">
<list>
<DockerEnvVarImpl>
<option name="name" value="POSTGRES_PASSWORD" />
<option name="value" value="password" />
</DockerEnvVarImpl>
</list>
</option>
<option name="portBindings">
<list>
<DockerPortBindingImpl>
<option name="containerPort" value="5432" />
<option name="hostPort" value="5432" />
</DockerPortBindingImpl>
</list>
</option>
<option name="commandLineOptions" value="" />
<option name="showCommandPreview" value="true" />
<option name="volumeBindings">
<list>
<DockerVolumeBindingImpl>
<option name="containerPath" value="/var/lib/postgresql/data" />
<option name="hostPath" value="dev-database-pg-data" />
</DockerVolumeBindingImpl>
</list>
</option>
</settings>
</deployment>
<method v="2" />
</configuration>
</component>

42
.idea/sqlDataSources.xml generated Normal file
View file

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DdlMappings">
<mapping uuid="0991fb47-2942-4345-9491-170ad056c3e3" name="DDL Mapping">
<data-sources db="6d0a10cc-f084-4363-aa62-90ce255401e4" ddl="28d6cbf6-ed14-40f1-8733-fe8ae17f9380" />
<scope>
<node kind="database" qname="compendium">
<node kind="schema" qname="@" />
</node>
</scope>
</mapping>
</component>
<component name="SqlDataSourceStorage">
<option name="dataSources">
<list>
<State>
<option name="id" value="28d6cbf6-ed14-40f1-8733-fe8ae17f9380" />
<option name="name" value="compendium@localhost (DDL)" />
<option name="dbmsName" value="POSTGRES" />
<option name="urls">
<array>
<option value="file://$PROJECT_DIR$/src" />
</array>
</option>
<option name="scriptOptions">
<map>
<entry key="CreateIfNotExists" value="1" />
<entry key="CreateOrReplace" value="1" />
<entry key="Grants" value="1" />
<entry key="Owner" value="1" />
</map>
</option>
<option name="scopes">
<map>
<entry key="$PROJECT_DIR$/src" value="" />
</map>
</option>
</State>
</list>
</option>
</component>
</project>

6
.idea/sqldialects.xml generated Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="SqlDialectMappings">
<file url="file://$PROJECT_DIR$/src" dialect="PostgreSQL" />
</component>
</project>