save before upload

main
Mari 2 years ago
parent 2b3719e622
commit a3b679bd05
  1. 2
      .idea/sqldialects.xml
  2. 12
      package.json

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="SqlDialectMappings"> <component name="SqlDialectMappings">
<file url="file://$PROJECT_DIR$/migrations/current.sql" dialect="GenericSQL" /> <file url="file://$PROJECT_DIR$/migrations/current.sql" dialect="PostgreSQL" />
<file url="PROJECT" dialect="PostgreSQL" /> <file url="PROJECT" dialect="PostgreSQL" />
</component> </component>
</project> </project>

@ -2,9 +2,17 @@
"name": "crystalline", "name": "crystalline",
"version": "1.0.0", "version": "1.0.0",
"description": "Crystalline bot for the Cat Cafe", "description": "Crystalline bot for the Cat Cafe",
"main": "index.js", "main": "build index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "build": "tsc --build",
"clean": "rm -rf build",
"start": "node build/index.js",
"dbReset": "dotenv -- graphile-migrate reset",
"dbMigrate": "dotenv -- graphile-migrate migrate",
"dbWatch": "dotenv -- graphile-migrate watch",
"dbCommit": "dotenv -- graphile-migrate commit --message",
"dbUncommit": "dotenv -- graphile-migrate uncommit",
"dbStep": "dotenv -- graphile-migrate watch --once"
}, },
"author": "", "author": "",
"license": "ISC", "license": "ISC",

Loading…
Cancel
Save