Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/acryps/search.acryps.com
Combined AI search
https://github.com/acryps/search.acryps.com
Last synced: 5 days ago
JSON representation
Combined AI search
- Host: GitHub
- URL: https://github.com/acryps/search.acryps.com
- Owner: acryps
- Created: 2023-08-12T12:12:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-12T13:07:58.000Z (over 1 year ago)
- Last Synced: 2023-08-12T13:45:22.613Z (over 1 year ago)
- Language: TypeScript
- Size: 671 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Template
Use this template to create the base of your new project.
It consists of a server and a web client. It utilizes vldom, vlserver and vlquery and is also setup to run on vlcluster.
## Clone into your project
Go to your repository folder, open a terminal and run the following commands.```
mkdir
cdgit init
git pull [email protected]:acryps/template.git
```Now you have the whole code-base in your project and just need to push it to your remote git.
**Change the name of your project in the `package.json` and `client/index.html` (title tag in head) from 'template' to \.**
```
git add .
git commit -m "Init"
git branch -M main
git remote add origin
git push -u origin main
```## Build, start and debug project
In advance all packages have to be installed.
```
npm installcd client
npm installcd ../server
npm install
```Afterwards the **server** can be built and started `npm run build; npm start` or debugged `npm run watch` and the **client** built `npm run build` or debugged `npm run watch`.