Skip to content

Commit

Permalink
init project
Browse files Browse the repository at this point in the history
  • Loading branch information
yuikns committed Oct 23, 2023
0 parents commit 0ea53f2
Show file tree
Hide file tree
Showing 3 changed files with 122 additions and 0 deletions.
107 changes: 107 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
# System Generated Info
.DS_Store
*.swp

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

# Jetbrain Related Project files

## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:

# User-specific stuff:
# .idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries

# Sensitive or high-churn files:
# .idea/dataSources.ids
# .idea/dataSources.xml
# .idea/sqlDataSources.xml
# .idea/dynamic.xml
# .idea/uiDesigner.xml

# Gradle:
# .idea/gradle.xml
# .idea/libraries

# Mongo Explorer plugin:
# .idea/mongoSettings.xml

## File-based project format:
*.ipr
*.iws

## Plugin-specific files:

# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties

# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out

# Go related stuff
*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*

_testmain.go
*.test
*.prof

# binary release
/bin/

# configure files
/.env

# cover test file
/cover.out
/vendor/

# vscode
/.vscode/
!/.vscode/c_cpp_properties.json

# bazel
/.user.bazelrc

1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
moonshot.ai
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!-- Redirect all page to https://www.moonshot.cn/ -->
<!DOCTYPE html>
<html>

<head>
<title>Redirecting...</title>
<meta http-equiv="refresh" content="0;url=https://www.moonshot.cn/">
</head>

<body>
Redirecting... <a href="https://www.moonshot.cn/">Click here if you are not redirected.</a>
</body>

</html>

0 comments on commit 0ea53f2

Please sign in to comment.