Skip to content

Commit

Permalink
node server startup
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperRonanCraft committed Mar 27, 2024
1 parent dbde32d commit d1822e6
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ target
.idea
*.iml
BetterRTP.wiki/
.DS_Store
.DS_Store
.vscode/
9 changes: 9 additions & 0 deletions NodeServer/main/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body></body>
</html>
Empty file added NodeServer/main/index.js
Empty file.
16 changes: 16 additions & 0 deletions NodeServer/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>me.ronancraft</groupId>
<artifactId>NodeServer</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

</project>

0 comments on commit d1822e6

Please sign in to comment.